[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Adding custom bulit-in type
- From: Roberto Ierusalimschy <roberto@...>
- Date: Fri, 28 Jul 2023 11:06:18 -0300
> 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