Type Alias

Int.Magnitude

A type that can represent the absolute value of any possible value of this type.

Declaration

typealias Int.Magnitude = UInt

See Also

Finding the Sign and Magnitude

var magnitude: UInt

The magnitude of this value.

func abs<T>(T) -> T

Returns the absolute value of the given number.

func signum() -> Int

Returns -1 if this value is negative and 1 if it’s positive; otherwise, 0.