One of the values to multiply before adding to this value. この値に加えられる前に掛け合わされる値のうちの1つ。
Instance Method
インスタンスメソッド
add
addProduct(_:_:)
Adds the product of the two given values to this value in place, computed without intermediate rounding.
2つの与えられた値の積をこの値にその場で加えます、中間の丸めなしで計算されます。
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標準ライブラリ
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Performing Calculations 計算の実行
Floating-Point Operators for Double
Double用の浮動小数点演算
Perform arithmetic and bitwise operations or compare values.
算術およびビット単位の演算を実行します、または値を比較します。
func addingProduct (Double, Double) -> Double
Returns the result of adding the product of the two given values to this value, computed without intermediate rounding.
2つの与えられた値の積をこの値に加える結果を返します、中間の丸めなしで計算されます。
func squareRoot () -> Double
Returns the square root of the value, rounded to a representable value.
この値の平方根を返します、表現可能な値に丸められます。
func formSquareRoot ()
Replaces this value with its square root, rounded to a representable value.
この値をそれの平方根で置き換えます、表現可能な値に丸められます。
func remainder(dividingBy : Double) -> Double
Returns the remainder of this value divided by the given value.
与えられた値で除算されたこの値の余りを返します。
func formRemainder (dividingBy : Double)
Replaces this value with the remainder of itself divided by the given value.
それ自身を与えられた値で除算した余りでこの値を置き換えます。
func truncatingRemainder (dividingBy : Double) -> Double
Returns the remainder of this value divided by the given value using truncating division.
切り捨て除算を使って与えられた値で除算されたこの値の余りを返します。
func formTruncatingRemainder (dividingBy : Double)
Replaces this value with the remainder of itself divided by the given value using truncating division.
切り捨て除算を使ってそれ自身を与えられた値で除算した余りでこの値を置き換えます。
func negate()
Replaces this value with its additive inverse.
この値をそれの加法の逆元で置き換えます。