[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [ANN] Lua 5.2.0 (work1) now available
- From: Quae Quack <quae@...>
- Date: Tue, 12 Jan 2010 04:06:28 +1100
2010/1/12 GrayFace
<sergroj@mail.ru>
- '__pairs'/'__ipairs' metamethod
Now rawpairs and rawipairs are needed.
--
___________________________________________
Best regards,
Sergey Rozhenko mailto:sergroj@mail.ru
Not really.
In the current iteration (of which I do not approve), rawpairs is just: for k , v in next , mytable do ...... end
and rawipairs is just for i=1,#mylist do local v = mylist[i]; ...... end
ipairs really is pointless with it's newly defined behaviour....
Daurn