Instance Method インスタンスメソッド

dividing(by:)

Divides the number by another given number. この数を別の与えられた数で除算します。

Declaration 宣言

func dividing(by decimalNumber: NSDecimalNumber) -> NSDecimalNumber

Parameters パラメータ

decimalNumber

The number by which to divide the receiver. それでレシーバを除算することになる数。

Return Value 戻り値

A new NSDecimalNumber object whose value is the value of the receiver divided by decimalNumber. 新しいNSDecimalNumberオブジェクト、それの持つ値はdecimalNumberで除算したレシーバの値です。

Discussion 議論

This method uses the default behavior when handling calculation errors and rounding. このメソッドは、計算エラーの取り扱いと丸めの時に省略時の挙動を使います。

See Also 参照

Performing Arithmetic 算術の実行

Related Documentation 関連文書