static func + (Self, Self) -> Self
Adds two values and produces their sum.
2つの値を加算してそれらの合計を生成します。
static func - (Self, Self) -> Self
Subtracts one value from another and produces their difference.
ある値をもう一方から減じて、それらの差を返します。
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番目の値で除算した余りを返します。