[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Lua 5.1.1 has been frozen
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Tue, 13 Jun 2006 11:46:35 -0300
>Ability to add custom metadata (or some kind of attributes like in C#)
This is better done using a table constructor that can then check for validity.
Your example would be something like this:
SomeTable = MyTypedTable{
a = 1,
b = 2,
objname = "test.obj",
}
function MyTypedTable(t) <do validation here> end
--lhf