static func + (Self) -> Self
Returns the given number unchanged.
与えられた数を変更せずに返します。
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番目の値を最初のものから減じて、その差を左手側の変数の中に格納します。