func addingProduct (Self, Self) -> Self
Returns the result of adding the product of the two given values to this value, computed without intermediate rounding.
2つの与えられた値の積をこの値に加える結果を返します、中間の丸めなしで計算されます。
Availability
Technology
func addingProduct(_ lhs: Self, _ rhs: Self) -> Self
lhs
One of the values to multiply before adding to this value. この値に加えられる前に掛け合わされる値のうちの1つ。
rhs
The other value to multiply. 掛け合わされることになるもう一方の値。
The product of lhs
and rhs
, added to this value.
この値に加えられることになる、lhs
とrhs
の積。
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仕様によって定義されます。
func addingProduct (Self, Self) -> Self