lua-users home
lua-l archive

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


>   I take it there's no easy way to get to the underlying TValue *?

No. TValue* is used internally in several parts of Lua for
implementation purposes, but they have no meaning in Lua. What
exists in Lua is TValue. (In particular, TValue* changes all the
time: when a table grows, when a stack grows, etc.)

-- Roberto