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

Function lua_rawequal

third-party/lua-5.1.5/src/lapi.c:279–284  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

277
278
279LUA_API int lua_rawequal (lua_State *L, int index1, int index2) {
280 StkId o1 = index2adr(L, index1);
281 StkId o2 = index2adr(L, index2);
282 return (o1 == luaO_nilobject || o2 == luaO_nilobject) ? 0
283 : luaO_rawequalObj(o1, o2);
284}
285
286
287LUA_API int lua_equal (lua_State *L, int index1, int index2) {

Callers 3

luaB_rawequalFunction · 0.70
luaL_checkudataFunction · 0.70
io_typeFunction · 0.70

Calls 2

index2adrFunction · 0.85
luaO_rawequalObjFunction · 0.85

Tested by

no test coverage detected