@NotNull Number |
BCDFloat.$times$times(@NotNull Number Y) |
xY
|
@NotNull Number |
BCDFraction.$times$times(@NotNull Number y) |
xy
|
@NotNull Number |
BCDInteger.$times$times(@NotNull Number y) |
xy
|
@NotNull Number |
Number.$times$times(@NotNull Number y) |
xy
|
long |
BCDFloat.Coefficient_As_Long() |
coefficient - while a 18 digits number can also be represented as an long an 18digits multiplication need a
36digits temporary and that is more then a long can do.
|
long |
BCDFraction.Coefficient_As_Long() |
coefficient - while a 18 digits number can also be represented as an long an 18digits multiplication need a
36digits temporary and that is more then a long can do.
|
long |
BCDInteger.Coefficient_As_Long() |
coefficient - while a 18 digits number can also be represented as an long an 18digits multiplication need a
36digits temporary and that is more then a long can do.
|
long |
Number.Coefficient_As_Long() |
coefficient - while a 18 digits number can also be represented as an long an 18digits multiplication need a
36digits temporary and that is more then a long can do.
|
int |
BCDFloat.Compare(@NotNull Number Value) |
Compare values
|
int |
Number.Compare(@NotNull Number Value) |
Compare values
|
@NotNull Number |
BCDFloat.exp_10() |
10x
|
@NotNull Number |
BCDFraction.exp_10() |
10x
|
@NotNull Number |
BCDInteger.exp_10() |
10x
|
@NotNull Number |
Number.exp_10() |
10x
|
int |
BCDFloat.Exponent() |
current exponent - note that the exponent is based on the internal representation where the radix point is right
most.
|
int |
BCDFraction.Exponent() |
current exponent - note that the exponent is based on the internal representation where the radix point is right
most.
|
int |
BCDInteger.Exponent() |
current exponent - note that the exponent is based on the internal representation where the radix point is right
most.
|
int |
Number.Exponent() |
current exponent - note that the exponent is based on the internal representation where the radix point is right
most.
|
int |
BCDFloat.Num_Digits() |
the current number of digits - not that when the number is not normalised there might be more 0's in the number
then strictly needed.
|
int |
BCDFraction.Num_Digits() |
the current number of digits - not that when the number is not normalised there might be more 0's in the number
then strictly needed.
|
int |
Number.Num_Digits() |
the current number of digits - not that when the number is not normalised there might be more 0's in the number
then strictly needed.
|
default @NotNull Number |
Number.pow(@NotNull Number y) |
xy
|