static func + (Int, Int) -> Int
Adds two values and produces their sum.
2つの値を加算してそれらの合計を生成します。
static func - (Int, Int) -> Int
Subtracts one value from another and produces their difference.
ある値をもう一方から減じて、それらの差を返します。
static func * (Int, Int) -> Int
Multiplies two values and produces their product.
2つの値を乗算してそれらの積を生成します。
static func / (Int, Int) -> Int
Returns the quotient of dividing the first value by the second.
最初の値を2番目の値で除算した商を返します。
static func % (Int, Int) -> Int
Returns the remainder of dividing the first value by the second.
最初の値を2番目の値で除算した余りを返します。