arthur
12/21/2015, 10:02 AMpublic operator fun BigDecimal.div(other: BigDecimal) : BigDecimal = this.divide(other)
to public operator fun BigDecimal.div(other: BigDecimal) : BigDecimal = this.divide(other, RoundingMode.HALF_UP)
Without setting the rounding mode, divide seems to be a bit pointless as it will often result in an error. Can anyone see a reason why this proposal would be a bad idea?