lua-users home
lua-l archive

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


> Can someone explain proxy tables (newproxy) or tell me 
> where the doco is?

`newproxy' is unofficial in Lua 5.0. You can (should?) create proxy
tables without this function. Just create an empty table and set
appropriate metamethods for it.

-- Roberto