lua-users home
lua-l archive

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


On Wed, Nov 27, 2013 at 1:19 PM, David Demelier
<demelier.david@gmail.com> wrote:
>
> ipairs must not be removed.

There are many times where I have a table with string keys
(properties) and a sequence (the items that I'm collecting).

I heart ipairs.

pairs == iterate

ipairs is a special version that just gives me a sequence, in order.

Pretty simple and clean.

-Andrew