The value to use when dividing this value. この値を除算するときに使うための値。
formTruncatingRemainder(dividingBy:)
Availability
- iOS 14.0+
- iPadOS 14.0+
- macOS 11.0+
- Mac Catalyst 14.5+
- tvOS 14.0+
- watchOS 7.0+
- Xcode 12.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
mutating func formTruncatingRemainder(dividingBy other: Float16
)
Parameters パラメータ
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 form
method is always exact.
この値とother
が両方とも有限の数ならば、切り捨てられる余りはこの値と同じ符号を持ち、そして厳密にother
より小さい規模になります。form
メソッドは常に正確です。
Note 注意
This documentation comment was inherited from Floating
.
この文書化コメントは、Floating
から引き継がれました。