static func &+ (Int, Int) -> Int
Returns the sum of the two given values, wrapping the result in case of any overflow.
2つの与えられた値の合計を返します、何らかのオーバーフローの場合には結果をラップします。
static func &* (Int, Int) -> Int
Returns the product of the two given values, wrapping the result in case of any overflow.
2つの与えられた値の積を返します、何らかのオーバーフローの場合には結果をラップします。
static func &+= (inout Int, Int)
Adds two values and stores the result in the left-hand-side variable, wrapping any overflow.
2つの値を加算して結果を左手側の変数に格納します、あらゆるオーバーフローをラップします。
static func &-= (inout Int, Int)
Subtracts the second value from the first and stores the difference in the left-hand-side variable, wrapping any overflow.
2番目の値を最初のものから減じてその差を左手側の変数の中に格納します、あらゆるオーバーフローをラップします。
static func &*= (inout Int, Int)
Multiplies two values and stores the result in the left-hand-side variable, wrapping any overflow.
2つの値を乗算して結果を左手側の変数に格納します、あらゆるオーバーフローをラップします。