lua-users home
lua-l archive

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


On 05/14/2017 02:08 PM, Charles Heywood wrote:
> I'm on phone so can't read all that well. Any deserialization that
> doesn't depend on load() ?

No, it implements reverse task - serialize table to string with lua
code. (Most challenging part was cyclic tables with table keys.)

AFAIK there are "Ser" by gvx and "serpent" by pkulchenko for same task.
(I've not tried them as my fun was in writing this by myself.)

-- Martin