MCPcopy Create free account
hub / github.com/PlutoLang/Pluto / lua_isuserdata

Function lua_isuserdata

src/lapi.cpp:361–364  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

359
360
361LUA_API int lua_isuserdata (lua_State *L, int idx) {
362 const TValue *o = index2value(L, idx);
363 return (ttisfulluserdata(o) || ttislightuserdata(o));
364}
365
366
367LUA_API int lua_rawequal (lua_State *L, int index1, int index2) {

Callers 1

liolib.cppFile · 0.85

Calls 1

index2valueFunction · 0.85

Tested by

no test coverage detected