func quotientAndRemainder (dividingBy : Self) -> (quotient: Self, remainder: Self)
Returns the quotient and remainder of this value divided by the given value.
与えられた値で除算されたこの値の商と余りを返します。
Availability
Technology
func quotientAndRemainder(dividingBy rhs: Self) -> (quotient: Self, remainder: Self)
rhs
The value to divide this value by. この値を除算するための値。
A tuple containing the quotient and remainder of this value divided by rhs
. The remainder has the same sign as lhs
.
rhs
によって除算されたこの値の商と余りを含んでいるタプル。余りは、lhs
と同じ符号を持ちます。
Use this method to calculate the quotient and remainder of a division at the same time. このメソッドを使って、除算の商と余りを同時に計算してください。
func quotientAndRemainder (dividingBy : Self) -> (quotient: Self, remainder: Self)
func isMultiple (of: Self) -> Bool
true
if this value is a multiple of the given value, and false
otherwise.
true
をもしこの値がその与えられた値の倍数ならば、そしてfalse
をそうでないならば返します。