Function 関数

NSDecimalPower(_:_:_:_:)

Raises the decimal value to the specified power. 10進法値を指定累乗します。

Declaration 宣言

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

Discussion 議論

Raises number to power, possibly rounding off according to roundingMode, and stores the resulting value in result. numberpower乗します、可能ならば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 参照を使って算術を実行する