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

Function lua_rawequal

third-party/lua-5.5.0/src/lapi.c:326–330  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

324
325
326LUA_API int lua_rawequal (lua_State *L, int index1, int index2) {
327 const TValue *o1 = index2value(L, index1);
328 const TValue *o2 = index2value(L, index2);
329 return (isvalid(L, o1) && isvalid(L, o2)) ? luaV_rawequalobj(o1, o2) : 0;
330}
331
332
333LUA_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