The value to use when dividing this value.
この値を除算するときに使うための値。
Return Value
戻り値
The remainder of this value divided by other.otherで除算されたこの値の余りを返します。
Discussion
解説
For two finite values x and y, the remainder r of dividing x by y satisfies x == y * q + r, where q is the integer nearest to x / y. If x / y is exactly halfway between two integers, q is chosen to be even. Note that q is notx / y computed in floating-point arithmetic, and that q may not be representable in any available integer type.
2つの有限値xとyに対して、xをyで割った余りrはx == y * q + rを満足させます、ここでqはx / yに最も近い整数です。x / yが正確に2つの整数の間の中ほどならば、qは偶数である方を選ばれます。qが浮動小数点算術で計算されるx / yではないこと、そしてqは何らかの利用可能な整数型において表現可能でないかもしれないことに注意してください
The following example calculates the remainder of dividing 8.625 by 0.75:
以下の例は、8.625を0.75で割ることの余りを計算します:
If this value and other are finite numbers, the remainder is in the closed range -abs(other / 2)...abs(other / 2). The remainder(dividingBy:) method is always exact. This method implements the remainder operation defined by the IEEE 754 specification.
この値とotherが有限数ならば、あまりは完結範囲-abs(other / 2)...abs(other / 2)の中に入ります。remainder(dividingBy:)メソッドは常に厳密に正確です。このメソッドは、IEEE 754 仕様によって定義される剰余演算を実装します。
Returns the result of adding the product of the two given values to this value, computed without intermediate rounding.
2つの与えられた値の積をこの値に加える結果を返します、中間の丸めなしで計算されます。