lua_next
while (lua_next(L, -2)) { /* for each pair in table */
if (lua_next(L, 1))
while (lua_next(L, 1)) {
LUA_API int (lua_next) (lua_State *L, int idx);
if (lua_next(state, 1)) {
while (lua_next(state, index) != 0) {