Instance Method インスタンスメソッド

negate()

Replaces this value with its additive inverse. この値をそれの加法の逆元で置き換えます。

Declaration 宣言

mutating func negate()

Discussion 解説

The result is always exact. This example uses the negate() method to negate the value of the variable x: 結果は常に厳密に正確です。この例はnegate()メソッドを使って、変数xの値を負にします:


var x = 21.5
x.negate()
// x == -21.5

Relationships 関係

From Protocol 由来プロトコル

See Also 参照

Performing Calculations 計算の実行