[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: table.remove behavior?
- From: "Paul Chiusano" <paul.chiusano@...>
- Date: Sun, 19 Mar 2006 12:21:46 -0500
Oops, that should have been:
function table.remove(t, ind)
local next
repeat
next = t[ind+1]
t[ind] = next
ind = ind+1
until next==nil
end
-Paul