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

Function lua_rawget

Source/Misc/lua/src/lua.c:2406–2413  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2404
2405
2406LUA_API void lua_rawget (lua_State *L, int idx) {
2407StkId t;
2408lua_lock(L);
2409t = index2adr(L, idx);
2410api_check(L, ttistable(t));
2411setobj2s(L, L->top - 1, luaH_get(hvalue(t), L->top - 1));
2412lua_unlock(L);
2413}
2414
2415
2416LUA_API void lua_rawgeti (lua_State *L, int idx, int n) {

Callers 15

set_instance_valueFunction · 0.85
get_instance_valueFunction · 0.85
get_main_threadFunction · 0.85
get_impl_tableFunction · 0.85
lua_rawgetpFunction · 0.85
getMethod · 0.85
rawgetFunction · 0.85
luaL_getmetafieldFunction · 0.85
luaL_setnFunction · 0.85
luaL_getnFunction · 0.85
luaL_findtableFunction · 0.85
luaB_rawgetFunction · 0.85

Calls 2

index2adrFunction · 0.85
luaH_getFunction · 0.85

Tested by

no test coverage detected