The first value to add. 加算する第1の値。
Operator
演算子
&+(_:
&+(_:_:)
Returns the sum of the two given values, wrapping the result in case of any overflow.
2つの与えられた値の合計を返します、何らかのオーバーフローの場合には結果をラップします。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 9.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
static func &+ (lhs: Self, rhs: Self) -> Self
Parameters パラメータ
lhs
rhs
The second value to add. 加算する第2の値。
Discussion 解説
The overflow addition operator (&+
) discards any bits that overflow the fixed width of the integer type. In the following example, the sum of 100
and 121
is greater than the maximum representable Int8
value, so the result is the partial value after discarding the overflowing bits.
オーバーフロー加算演算子(&+
)は、固定幅の整数型からオーバーフローするあらゆるビットを廃棄します。以下の例において、100
と121
の合計は、最大限表現可能なInt8
値より大きいです、それで結果はオーバーフローするビットを廃棄後の部分的な値です。
For more about arithmetic with overflow operators, see Overflow Operators in The Swift Programming Language. オーバーフロー演算子を使う算術についてさらには、オーバーフロー演算子をSwiftプログラミング言語で見てください。