static func + (Self, Self) -> Self
Adds two values and produces their sum.
2つの値を加算してそれらの合計を生成します。
static func * (Self, Self) -> Self
Multiplies two values and produces their product.
2つの値を乗算してそれらの積を生成します。
static func / (Self, Self) -> Self
Returns the quotient of dividing the first value by the second.
最初の値を2番目の値で除算した商を返します。
static func % (Self, Self) -> Self
Returns the remainder of dividing the first value by the second.
最初の値を2番目の値で除算した余りを返します。