MCPcopy Create free account
hub / github.com/Snapchat/KeyDB / luaB_rawget

Function luaB_rawget

deps/lua/src/lbaselib.c:169–175  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

167
168
169static int luaB_rawget (lua_State *L) {
170 luaL_checktype(L, 1, LUA_TTABLE);
171 luaL_checkany(L, 2);
172 lua_settop(L, 2);
173 lua_rawget(L, 1);
174 return 1;
175}
176
177static int luaB_rawset (lua_State *L) {
178 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