[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [ANN] Luabins — Trivial Lua Binary Serialization Library
- From: Fabien <fleutot+lua@...>
- Date: Mon, 23 Feb 2009 01:24:26 +0100
Hi,
do you handle shared sub-tables? i.e. would tables t1 and t2 below be serialized correctly?
x = { }
t1 = { x, x }
t2 = { }; t2[1] = t2
If not, do you plan to ever support these?
-- Fabien.