lua-users home
lua-l archive

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


Cool,Thanks!


On Thu, May 30, 2013 at 5:41 PM, Roberto Ierusalimschy <roberto@inf.puc-rio.br> wrote:
> In the NEWTABLE opcode, the field B and C,which is the array and hash size
> of the table,respectively,use the so-called "floating point byte" with
> unsigned int.
> I guess the "floating point byte" can support more data range than the raw
> unsigned int, is it right?

It can support a range larger than unsigned int, although the
functions that Lua use to support it cannot. Its purpose
is to pack such range into a single byte.

-- Roberto