[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Little fun with vararg
- From: Andrew Starks <andrew.starks@...>
- Date: Sun, 3 Aug 2014 00:44:59 -0500
Return the keys in a table (any order):
```
local function list_keys(t, ...)
if next(t, (...)) then
return list_keys(t, next(t, (...)), ...)
else
return ...
end
end
```
--Andrew