Operator 演算子

-(_:)

Calculates the additive inverse of a value. ある値の加法の逆元を計算します。

Declaration 宣言

prefix static func - (x: Float) -> Float

Parameters パラメータ

operand

The value to negate. 負にする値。

Discussion 解説

The unary minus operator (prefix -) calculates the negation of its operand. The result is always exact. 単項マイナス演算子(前置-)は、それの演算数の否定を計算します。結果は常に厳密に正確です。


let x = 21.5
let y = -x
// y == -21.5

Relationships 関係

From Protocol 由来プロトコル

See Also 参照

Negation 負にする