MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / luaB_rawset

Function luaB_rawset

3rd/lua-5.4.3/src/lbaselib.c:174–181  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

172}
173
174static int luaB_rawset (lua_State *L) {
175 luaL_checktype(L, 1, LUA_TTABLE);
176 luaL_checkany(L, 2);
177 luaL_checkany(L, 3);
178 lua_settop(L, 3);
179 lua_rawset(L, 1);
180 return 1;
181}
182
183
184static int pushmode (lua_State *L, int oldmode) {

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