One of the values to multiply before adding to this value. この値に加えられる前に掛け合わされる値のうちの1つ。
Instance Method
インスタンスメソッド
adding
addingProduct(_:_:)
Returns the result of adding the product of the two given values to this value, computed without intermediate rounding.
2つの与えられた値の積をこの値に加える結果を返します、中間の丸めなしで計算されます。
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 宣言
Parameters パラメータ
lhs
rhs
The other value to multiply. 掛け合わされることになるもう一方の値。
Return Value 戻り値
The product of lhs
and rhs
, added to this value.
この値に加えられることになる、lhs
とrhs
の積。
Discussion 解説
This method is equivalent to the C fma
function and implements the fused
operation defined by the IEEE 754 specification.
このメソッドは、C fma
関数の等価物です、そしてfused
演算を実装し、それはIEEE 754仕様によって定義されます。
Note 注意
This documentation comment was inherited from Floating
.
この文書化コメントは、Floating
から引き継がれました。