lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> Hmm, LNUM basically (a bit like to Lua 5.3 experimental release)
> transparently switches number types between different representations
> when they overflow, [...]

A little off topic here, but Lua 5.3 does not switch number types when
they overflow. The type of each operation (and result) depends only on
the types of its operands.

-- Roberto