MCPcopy Create free account
hub / github.com/RomanKubiak/ctrlr / luaB_rawget

Function luaB_rawget

Source/Misc/lua/src/lua.c:11033–11039  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11031
11032
11033static int luaB_rawget (lua_State *L) {
11034luaL_checktype(L, 1, LUA_TTABLE);
11035luaL_checkany(L, 2);
11036lua_settop(L, 2);
11037lua_rawget(L, 1);
11038return 1;
11039}
11040
11041static int luaB_rawset (lua_State *L) {
11042luaL_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