MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / lua_rawequal

Function lua_rawequal

third-party/lua-5.4.6/src/lapi.c:328–332  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 3

luaB_rawequalFunction · 0.70
findfieldFunction · 0.70
luaL_testudataFunction · 0.70

Calls 1

index2valueFunction · 0.70

Tested by

no test coverage detected