LUA_NEWTABLE(3) | Library Functions Manual | LUA_NEWTABLE(3) |
lua_newtable
—
creates a new empty table and pushes it onto the stack,
function indicator [-0, +1, m]
#include
<lua.h>
void
lua_newtable
(lua_State
*L);
lua_newtable
()
creates a new empty table and pushes it onto the stack. It is equivalent to
lua_createtable(L,
0, 0).
Roberto Ierusalimschy, Luiz Henrique de Figueiredo, and Waldemar Celes, Lua 5.1 Reference Manual.
The lua_newtable
() manual page is based on
Lua Reference Manual 5.1 and was created by Sergey Bronnikov.
July 14, 2022 | Debian |