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

Function luaB_rawset

src/Chain/libraries/glua/lbaselib.cpp:275–282  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

273}
274
275static int luaB_rawset(lua_State *L) {
276 luaL_checktype(L, 1, LUA_TTABLE);
277 luaL_checkany(L, 2);
278 luaL_checkany(L, 3);
279 lua_settop(L, 3);
280 lua_rawset(L, 1);
281 return 1;
282}
283
284
285static 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