Re: table.remove behavior?
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: table.remove behavior?
- From: "Paul Chiusano" <paul.chiusano@...>
- Date: 2006年3月19日 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