Operator 演算子

/=(_:_:)

Divides one decimal number by another, storing the result in the first number. ある10進数を別のもので割ります、結果を最初の数に格納します。

Declaration 宣言

static func /= (lhs: inout Decimal, rhs: 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 算術の実行