Floating-Point Operators for Float
Float用の浮動小数点演算
Perform arithmetic and bitwise operations or compare values.
算術およびビット単位の演算を実行します、または値を比較します。
func addingProduct (Float, Float) -> Float
Returns the result of adding the product of the two given values to this value, computed without intermediate rounding.
2つの与えられた値の積をこの値に加える結果を返します、中間の丸めなしで計算されます。
func addProduct (Float, Float)
Adds the product of the two given values to this value in place, computed without intermediate rounding.
2つの与えられた値の積をこの値にその場で加えます、中間の丸めなしで計算されます。
func formSquareRoot ()
Replaces this value with its square root, rounded to a representable value.
この値をそれの平方根で置き換えます、表現可能な値に丸められます。
func remainder(dividingBy : Float) -> Float
Returns the remainder of this value divided by the given value.
与えられた値で除算されたこの値の余りを返します。
func formRemainder (dividingBy : Float)
Replaces this value with the remainder of itself divided by the given value.
それ自身を与えられた値で除算した余りでこの値を置き換えます。
func truncatingRemainder (dividingBy : Float) -> Float
Returns the remainder of this value divided by the given value using truncating division.
切り捨て除算を使って与えられた値で除算されたこの値の余りを返します。
func formTruncatingRemainder (dividingBy : Float)
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.
この値をそれの加法の逆元で置き換えます。