- div(other) -> BigDecimal[permalink][rdoc][edit]
- quo(other) -> BigDecimal
- self / other -> BigDecimal
- 
商を計算します。 - [PARAM] other:
- self を割る数を指定します。
 詳細は Numeric#quo を参照して下さい。 計算結果の精度についてはbigdecimal/計算精度についてを参照してください。 
- div(other, n) -> BigDecimal[permalink][rdoc][edit]
- 
商を計算します。 self / other を最大で n 桁まで計算します。計算結果の精度が n より大きいときは BigDecimal.mode で指定された方法で丸められます。 - [PARAM] other:
- self を割る数を指定します。
- [PARAM] n:
- 有効桁数を整数で指定します。省略するか 0 を指定した場合は BigDecimal#/ と同じ値を返します。
- [EXCEPTION] ArgumentError:
- n に負の数を指定した場合に発生します。
 [SEE_ALSO] BigDecimal#/