Operator 演算子

/(_:_:)

Divides one decimal number by another. ある10進数を別のもので割ります。

Declaration 宣言

static func / (lhs: Decimal, rhs: Decimal) -> 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 NSDecimalDivide(_:_:_:_:) function instead. 演算の結果がDecimal型が提供可能であるよりさらに精度を要求するならば、結果はNSDecimalNumber.RoundingMode.plain丸めモードを使って丸められます。異なる丸めモードを指定するには、NSDecimalDivide(_:_:_:_:)関数を代わりに使ってください。

See Also 参照

Performing Arithmetic 算術の実行