Required Instance Methodswift 6.0.1Swift

negate

Replaces this value with its additive inverse.

override mutating func negate()

The result is always exact. This example uses the negate() method to negate the value of the variable x:

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