static func += (inout Self, Self)
Adds two values and stores the result in the left-hand-side variable.
2つの値を加算して、結果を左手側の変数に格納します。
static func -= (inout Self, Self)
Subtracts the second value from the first and stores the difference in the left-hand-side variable.
2番目の値を最初のものから減じて、その差を左手側の変数の中に格納します。
static func *= (inout Self, Self)
Multiplies two values and stores the result in the left-hand-side variable.
2つの値を乗算して、結果を左手側の変数に格納します。
static func %= (inout Self, Self)
Divides the first value by the second and stores the remainder in the left-hand-side variable.
最初の値を2番目の値で除算して、余りを左手側の変数に格納します。