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

Function luaB_rawget

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

Source from the content-addressed store, hash-verified

265
266
267static int luaB_rawget(lua_State *L) {
268 luaL_checktype(L, 1, LUA_TTABLE);
269 luaL_checkany(L, 2);
270 lua_settop(L, 2);
271 lua_rawget(L, 1);
272 return 1;
273}
274
275static int luaB_rawset(lua_State *L) {
276 luaL_checktype(L, 1, LUA_TTABLE);

Callers

nothing calls this directly

Calls 4

luaL_checktypeFunction · 0.85
luaL_checkanyFunction · 0.85
lua_settopFunction · 0.85
lua_rawgetFunction · 0.85

Tested by

no test coverage detected