Contents

infinity

Positive infinity.

Declaration

static var infinity: Float { get }

Discussion

Infinity compares greater than all finite numbers and equal to other infinite values.

let x = Double.greatestFiniteMagnitude
let y = x * 2
// y == Double.infinity
// y > x

See Also

Accessing Numeric Constants