Floating-Point Operators for Double
Double用の浮動小数点演算
Perform arithmetic and bitwise operations or compare values.
算術およびビット単位の演算を実行します、または値を比較します。
Topics
話題
Arithmetic with Assignment
代入での算術
static func -= (inout Double, Double)
Subtracts the second value from the first and stores the difference in the left-hand-side variable, rounding to a representable value.
2番目の値を最初のものから減じて、その差を左手側の変数の中に格納します、表現可能な値へ丸められます。
static func *= (inout Double, Double)
Multiplies two values and stores the result in the left-hand-side variable, rounding to a representable value.
2つの値を乗算して、結果を左手側の変数に格納します、表現可能な値へ丸められます。
static func /= (inout Double, Double)
Divides the first value by the second and stores the quotient in the left-hand-side variable, rounding to a representable value.
最初の値を2番目の値で除算して、商を左手側の変数に格納します、表現可能な値へ丸められます。
Comparison
比較
static func < (Double, Double) -> Bool
Returns a Boolean value indicating whether the value of the first argument is less than that of the second argument.
最初の引数の値が2番目の引数のそれより少ないかどうかを指し示しているブール値を返します。
static func <= (Double, Double) -> Bool
Returns a Boolean value indicating whether the value of the first argument is less than or equal to that of the second argument.
最初の引数の値が2番目の引数のそれより少ないまたは等しいかどうかを指し示すブール値を返します。
static func > (Double, Double) -> Bool
Returns a Boolean value indicating whether the value of the first argument is greater than that of the second argument.
最初の引数の値が2番目の引数のそれより大きいかどうかを指し示すブール値を返します。
static func >= (Double, Double) -> Bool
Returns a Boolean value indicating whether the value of the first argument is greater than or equal to that of the second argument.
最初の引数の値が2番目の引数のそれより大きいまたは等しいかどうかを指し示すブール値を返します。
See Also
参照
Performing Calculations
計算の実行
func addProduct(Double, Double)
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 negate()
Replaces this value with its additive inverse.
この値をそれの加法の逆元で置き換えます。