MCPcopy Create free account
hub / github.com/BZFlag-Dev/bzflag / lua_createtable

Function lua_createtable

other_src/lua/src/lapi.cpp:610–616  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

608
609
610LUA_API void lua_createtable (lua_State *L, int narray, int nrec) {
611 lua_lock(L);
612 luaC_checkGC(L);
613 sethvalue(L, L->top, luaH_new(L, narray, nrec));
614 api_incr_top(L);
615 lua_unlock(L);
616}
617
618
619LUA_API int lua_getmetatable (lua_State *L, int objindex) {

Callers 15

os_dateFunction · 0.70
tcreateFunction · 0.70
ll_seeallFunction · 0.70
luaopen_packageFunction · 0.70
jointableFunction · 0.70
value2fenvFunction · 0.70
capconst_lFunction · 0.70
locale_lFunction · 0.70
createmetatableFunction · 0.70
newfenvFunction · 0.70
luaL_findtableFunction · 0.70
db_getinfoFunction · 0.70

Calls 1

luaH_newFunction · 0.70

Tested by

no test coverage detected