Extensions for java.math.BigDecimal
dec
Enables the use of the unary --
operator for BigDecimal instances.
operator fun BigDecimal.dec(): BigDecimal
div
Enables the use of the /
operator for BigDecimal instances.
operator fun BigDecimal.div(other: BigDecimal): BigDecimal
inc
Enables the use of the unary ++
operator for BigDecimal instances.
operator fun BigDecimal.inc(): BigDecimal
minus
Enables the use of the -
operator for BigDecimal instances.
operator fun BigDecimal.minus(other: BigDecimal): BigDecimal
mod
Enables the use of the %
operator for BigDecimal instances.
operator fun BigDecimal.mod(other: BigDecimal): BigDecimal
plus
Enables the use of the +
operator for BigDecimal instances.
operator fun BigDecimal.plus(other: BigDecimal): BigDecimal
rem
Enables the use of the %
operator for BigDecimal instances.
operator fun BigDecimal.rem(other: BigDecimal): BigDecimal
times
Enables the use of the *
operator for BigDecimal instances.
operator fun BigDecimal.times(other: BigDecimal): BigDecimal
unaryMinus
Enables the use of the unary -
operator for BigDecimal instances.
operator fun BigDecimal.unaryMinus(): BigDecimal