static func - (Self) -> Self
Returns the additive inverse of the specified value.
指定された値の加法の逆元を返します。
Availability
Technology
prefix static func - (operand: Self) -> Self
The additive inverse of this value. この値の加法の逆元。
The negation operator (prefix -
) returns the additive inverse of its argument.
負にする演算子(前置-
)は、この引数の加法の逆元を返します。
The resulting value must be representable in the same type as the argument. In particular, negating a signed, fixed-width integer type’s minimum results in a value that cannot be represented. 結果の値は、引数と同じ型で表現可能でなければなりません。とりわけ、符号付きの、固定長整数型のもつ最小値を負にすることは、表現できない値という結果になります。
static func - (Self) -> Self