lua-users home
lua-l archive

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


> In older versions of Lua, the 'next' function may return the elements of 't' 
> out of order.

That is not correct. Elements in a table has no order, so `next' cannot
return them out of (or in) order.

-- Roberto