Function 関数

pow(_:_:)

Returns a decimal number raised to a given power. 指定累乗されたある10進数を返します。

Declaration 宣言

func pow(_ x: Decimal, _ y: Int) -> Decimal

Discussion 議論

If the result of this operation requires more precision than the Decimal type can provide, the result is rounded using the NSDecimalNumber.RoundingMode.plain rounding mode. To specify a different rounding mode, use the NSDecimalPower(_:_:_:_:) function instead. 演算の結果がDecimal型が提供可能であるよりさらに精度を要求するならば、結果はNSDecimalNumber.RoundingMode.plain丸めモードを使って丸められます。異なる丸めモードを指定するには、NSDecimalPower(_:_:_:_:)関数を代わりに使ってください。

See Also 参照

Performing Arithmetic 算術の実行