lua-users home
lua-l archive

Re: [Q] how to anticipate last iteration in for .. in pairs

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


On Mon, May 4, 2009 at 10:05 AM, V S P <toreason@fastmail.fm> wrote:
>
> Hello,
> what's a way to anticipate the last iteration
> in loop over a table
untested:
for k, v in pairs (t) do
 if next(t,k) == nil then
 -- it's the last
 end
 -- general body
end
-- 
Javier

AltStyle によって変換されたページ (->オリジナル) /