Function 関数

NSDecimalMultiply

Multiplies two decimal numbers together. 2つの10進数を互いに掛け合わせます。

Declaration 宣言

NSCalculationError NSDecimalMultiply(NSDecimal *result, const NSDecimal *leftOperand, const NSDecimal *rightOperand, NSRoundingMode roundingMode);

Discussion 議論

Multiplies rightOperand by leftOperand and stores the product, 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 参照を使って算術を実行する