MCPcopy Create free account
hub / github.com/DFHack/dfhack / luaB_rawset

Function luaB_rawset

depends/lua/src/lbaselib.c:163–170  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

161}
162
163static int luaB_rawset (lua_State *L) {
164 luaL_checktype(L, 1, LUA_TTABLE);
165 luaL_checkany(L, 2);
166 luaL_checkany(L, 3);
167 lua_settop(L, 3);
168 lua_rawset(L, 1);
169 return 1;
170}
171
172
173static int luaB_collectgarbage (lua_State *L) {

Callers

nothing calls this directly

Calls 4

luaL_checktypeFunction · 0.85
luaL_checkanyFunction · 0.85
lua_settopFunction · 0.85
lua_rawsetFunction · 0.85

Tested by

no test coverage detected