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