Integer Operators
整数演算子
Perform arithmetic and bitwise operations or compare values.
算術およびビット単位の演算を実行します、または値を比較します。
func quotientAndRemainder (dividingBy : Int) -> (quotient: Int, remainder: Int)
Returns the quotient and remainder of this value divided by the given value.
与えられた値で除算されたこの値の商と余りを返します。
func isMultiple (of: Int) -> Bool
Returns
true
if this value is a multiple of the given value, and false
otherwise.
true
をもしこの値がその与えられた値の倍数ならば、そしてfalse
をそうでないならば返します。