[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Getting Lua tables from C
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Mon, 23 Apr 2001 10:14:15 -0300 (EST)
>Weak keyed tables are usually for garbage collection and such, so if a key
>is no longer referenced the key and value can be deleted from the table and
>the key recycled, the value/memory can also be recycled, unless theres a
>strong reference too it.
>
>but lua's use may be different.
Weak tables in Lua will allow weak keys, weak values, or both.
--lhf