I want to change `public operator fun BigDecimal.d...
# stdlib
a
I want to change
public 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?