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

Function luaB_rawset

other_src/lua/src/lbaselib.cpp:177–184  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

175}
176
177static int luaB_rawset (lua_State *L) {
178 luaL_checktype(L, 1, LUA_TTABLE);
179 luaL_checkany(L, 2);
180 luaL_checkany(L, 3);
181 lua_settop(L, 3);
182 lua_rawset(L, 1);
183 return 1;
184}
185
186
187static int luaB_gcinfo (lua_State *L) {

Callers

nothing calls this directly

Calls 4

luaL_checktypeFunction · 0.70
luaL_checkanyFunction · 0.70
lua_settopFunction · 0.70
lua_rawsetFunction · 0.70

Tested by

no test coverage detected