Operator 演算子

&-(_:_:)

Returns the difference of the two given values, wrapping the result in case of any overflow. 2つの与えられた値の差を返します、何らかのオーバーフローの場合には結果をラップします。

Declaration 宣言

static func &- (lhs: Int16, rhs: Int16) -> Int16

Parameters パラメータ

lhs

A numeric value. ある数値。

rhs

The value to subtract from lhs. lhsから減じる値。

Discussion 解説

The overflow subtraction operator (&-) discards any bits that overflow the fixed width of the integer type. In the following example, the difference of 10 and 21 is less than zero, the minimum representable UInt value, so the result is the partial value after discarding the overflowing bits. オーバーフロー減算演算子(&-)は、固定幅の整数型からオーバーフローするあらゆるビットを廃棄します。以下の例において、1021の差はゼロ、最小限表現可能なUInt値、よりも少ないです、それで結果はオーバーフローするビットを廃棄後の部分的な値です。


let x: UInt8 = 21 &- 10
// x == 11
let y: UInt8 = 10 &- 21
// y == 245 (after overflow)

For more about arithmetic with overflow operators, see Overflow Operators in The Swift Programming Language. オーバーフロー演算子を使う算術についてさらには、オーバーフロー演算子Swiftプログラミング言語で見てください。