div(other) -> BigDecimal
[permalink][rdoc]quo(other) -> BigDecimal
self / other -> BigDecimal
商を計算します。
詳細は Float#quo を参照して下さい。
計算結果の精度についてはbigdecimal/計算精度についてを参照してください。
div(other, n) -> BigDecimal
[permalink][rdoc]商を計算します。
self / other を最大で n 桁まで計算します。計算結果の精度が n より大きいときは BigDecimal.mode で指定された方法で丸められます。
[SEE_ALSO] BigDecimal#/