Function 関数

NSDecimalSubtract(_:_:_:_:)

Subtracts one decimal value from another. ある10進数値を別のものから引きます。

Declaration 宣言

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

Discussion 議論

Subtracts rightOperand from leftOperand and stores the difference, possibly rounded off according to roundingMode, in result. rightOperandleftOperandから減じます、そして可能ならroundingModeにしたがって丸めて、resultに差を格納します。

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

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

See Also 参照

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