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