MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / lua_rawgeti

Function lua_rawgeti

extlibs/lua/src/lapi.c:703–708  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

701
702
703LUA_API int lua_rawgeti (lua_State *L, int idx, lua_Integer n) {
704 Table *t;
705 lua_lock(L);
706 t = gettable(L, idx);
707 return finishrawget(L, luaH_getint(t, n));
708}
709
710
711LUA_API int lua_rawgetp (lua_State *L, int idx, const void *p) {

Callers 12

pushargsFunction · 0.85
luaL_refFunction · 0.85
luaL_unrefFunction · 0.85
gctmFunction · 0.85
findloaderFunction · 0.85
main_threadFunction · 0.85
stateless_referenceMethod · 0.85
pushMethod · 0.85
basic_referenceMethod · 0.85
pushMethod · 0.85
pushMethod · 0.85
getMethod · 0.85

Calls 3

gettableFunction · 0.85
finishrawgetFunction · 0.85
luaH_getintFunction · 0.85

Tested by

no test coverage detected