lua-users home
lua-l archive

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


> I'd much rather a change where table.pack just returns a table and length:
>
> function table.pack(...)
>    return {...},select("#",...)
> end

The function table.pack could also set a metatable with then __len
metamethod returning the true length, since table.unpack already obey
__len metamethod.