The value to use when dividing this value. この値を除算するときに使うための値。
formTruncatingRemainder(dividingBy:)
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 8.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
mutating func formTruncatingRemainder(dividingBy other: Float
)
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
から引き継がれました。
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Performing Calculations 計算の実行
func addingProduct (Float, Float) -> Float
func addProduct (Float, Float)
func squareRoot () -> Float
func formSquareRoot ()
func remainder(dividingBy : Float) -> Float
func formRemainder (dividingBy : Float)
func truncatingRemainder (dividingBy : Float) -> Float
func negate()