MCPcopy Create free account
hub / github.com/defold/defold / lua_isuserdata

Function lua_isuserdata

engine/lua/src/lua/lapi.c:273–276  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

271
272
273LUA_API int lua_isuserdata (lua_State *L, int idx) {
274 const TValue *o = index2adr(L, idx);
275 return (ttisuserdata(o) || ttislightuserdata(o));
276}
277
278
279LUA_API int lua_rawequal (lua_State *L, int index1, int index2) {

Callers 3

ReleaseHashFunction · 0.85
TEST_FFunction · 0.85
RenderScript_DrawFunction · 0.85

Calls 1

index2adrFunction · 0.85

Tested by 1

TEST_FFunction · 0.68