MCPcopy Create free account
hub / github.com/SakuraEngine/SakuraEngine / lua_rawequal

Function lua_rawequal

xrepo/packages/l/lua/port/lua/src/lapi.c:332–336  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

330
331
332LUA_API int lua_rawequal (lua_State *L, int index1, int index2) {
333 const TValue *o1 = index2value(L, index1);
334 const TValue *o2 = index2value(L, index2);
335 return (isvalid(L, o1) && isvalid(L, o2)) ? luaV_rawequalobj(o1, o2) : 0;
336}
337
338
339LUA_API void lua_arith (lua_State *L, int op) {

Callers 5

luaB_rawequalFunction · 0.70
findfieldFunction · 0.70
luaL_testudataFunction · 0.70
luaL_testudataFunction · 0.50
skr_check_unknownFunction · 0.50

Calls 1

index2valueFunction · 0.85

Tested by

no test coverage detected