Function 関数

NSDecimalMultiplyByPowerOf10(_:_:_:_:)

Multiplies a decimal by the specified power of 10. 指定された10の累乗を、ある10進数に掛けます。

Declaration 宣言

func NSDecimalMultiplyByPowerOf10(_ result: UnsafeMutablePointer<Decimal>, 
                                _ number: UnsafePointer<Decimal>, 
                                _ power: Int16, 
                                _ roundingMode: NSDecimalNumber.RoundingMode) -> NSDecimalNumber.CalculationError

Discussion 議論

Multiplies number by power of 10 and stores the product, possibly rounded off according to roundingMode, in result. numberに10のpower乗を掛けます、そして可能なら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 参照を使って算術を実行する