Function 関数

NSDecimalDivide(_:_:_:_:)

Divides one decimal value by another. ある10進数値を別のもので割ります。

Declaration 宣言

func NSDecimalDivide(_ result: UnsafeMutablePointer<Decimal>, 
                   _ leftOperand: UnsafePointer<Decimal>, 
                   _ rightOperand: UnsafePointer<Decimal>, 
                   _ roundingMode: NSDecimalNumber.RoundingMode) -> NSDecimalNumber.CalculationError

Discussion 議論

Divides leftOperand by rightOperand and stores the quotient, possibly rounded off according to roundingMode, in result. If rightOperand is 0, returns NSDivideByZero. rightOperandleftOperandで割ります、そして可能ならroundingModeにしたがって丸めて、resultに商を格納します。rightOperandが0ならば、NSDivideByZeroを返します。

For explanations of the possible return values and rounding modes, see NSDecimalAdd(_:_:_:_:). 可能な戻り値と丸めモードの説明として、NSDecimalAdd(_:_:_:_:)を見てください。

Note that repeating decimals or numbers with a mantissa larger than 38 digits cannot be represented precisely. 循環小数または38桁より大きな仮数を持つ数は、正確に表されることができないことに注意してください。

For more information, see Number and Value Programming Topics. 詳細は、Number and Value Programming Topicsを見てください。

See Also 参照

Performing Arithmetic Using References 参照を使って算術を実行する