MCPcopy Create free account
hub / github.com/F-Stack/f-stack / luaB_rawget

Function luaB_rawget

freebsd/contrib/openzfs/module/lua/lbaselib.c:124–130  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

122
123
124static int luaB_rawget (lua_State *L) {
125 luaL_checktype(L, 1, LUA_TTABLE);
126 luaL_checkany(L, 2);
127 lua_settop(L, 2);
128 lua_rawget(L, 1);
129 return 1;
130}
131
132static int luaB_rawset (lua_State *L) {
133 luaL_checktype(L, 1, LUA_TTABLE);

Callers

nothing calls this directly

Calls 4

luaL_checktypeFunction · 0.70
luaL_checkanyFunction · 0.70
lua_settopFunction · 0.70
lua_rawgetFunction · 0.70

Tested by

no test coverage detected