The value to use when dividing this value.
この値を除算するときに使うための値。
Return Value
戻り値
The remainder of this value divided by other using truncating division.
切り捨て除算を使ってotherで除算されたこの値の余りを返します。
Discussion
解説
Performing truncating division with floating-point values results in a truncated integer quotient and a remainder. For values x and y and their truncated integer quotient q, the remainder r satisfies x == y * q + r.
不動小数点値で切り捨て除算を実行することは、切り捨てられる整数指数と余りという結果になります。値xとyおよび切り捨てられる整数指数qに対して、余りrはx == y * q + rを満足させます。
The following example calculates the truncating remainder of dividing 8.625 by 0.75:
以下の例は、8.625を0.75で除算することの切り捨てられる余りを計算します。
If this value and other are both finite numbers, the truncating remainder has the same sign as this value and is strictly smaller in magnitude than other. The truncatingRemainder(dividingBy:) method is always exact.
この値とotherが両方とも有限の数ならば、切り捨てられる余りはこの値と同じ符号を持ち、そして厳密にotherより小さい規模になります。truncatingRemainder(dividingBy:)メソッドは常に正確です。
Returns the result of adding the product of the two given values to this value, computed without intermediate rounding.
2つの与えられた値の積をこの値に加える結果を返します、中間の丸めなしで計算されます。