Operator 演算子

+=(_:_:)

Adds two decimal numbers, storing the result in the first number. 2つの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 NSDecimalAdd(_:_:_:_:) function instead. 演算の結果がDecimal型が提供可能であるよりさらに精度を要求するならば、結果はNSDecimalNumber.RoundingMode.plain丸めモードを使って丸められます。異なる丸めモードを指定するには、NSDecimalAdd(_:_:_:_:)関数を代わりに使ってください。

Relationships 関係

From Protocol 由来プロトコル

See Also 参照

Performing Arithmetic 算術の実行