math.huge
Description
A variable that effectively represents infinity, in the sense that in any numerical comparison every number will be less than this.
For example, if x
is a number, x > math.huge
will NEVER be true
except in the case of overflow (see below).
Lua will consider any number greater than or equal to 2^1024
(the exponent limit of a double) as inf
and hence equal to this.
Returns
Page views: 9,886
Updated: A Long Time Ago
Updated: A Long Time Ago