func truncatingRemainder (dividingBy : Self) -> Self
The value to use when dividing this value. この値を除算するときに使うための値。
Availability
Technology
func truncatingRemainder(dividingBy other: Self) -> Self
other
The value to use when dividing this value. この値を除算するときに使うための値。
The remainder of this value divided by other
using truncating division.
切り捨て除算を使ってother
で除算されたこの値の余りを返します。
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 truncating
method is always exact.
この値とother
が両方とも有限の数ならば、切り捨てられる余りはこの値と同じ符号を持ち、そして厳密にother
より小さい規模になります。truncating
メソッドは常に正確です。
func truncatingRemainder (dividingBy : Self) -> Self