MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / lua_isuserdata

Function lua_isuserdata

3rd/lua-5.4.3/src/lapi.c:316–319  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

314
315
316LUA_API int lua_isuserdata (lua_State *L, int idx) {
317 const TValue *o = index2value(L, idx);
318 return (ttisfulluserdata(o) || ttislightuserdata(o));
319}
320
321
322LUA_API int lua_rawequal (lua_State *L, int index1, int index2) {

Callers

nothing calls this directly

Calls 1

index2valueFunction · 0.85

Tested by

no test coverage detected