MCPcopy Create free account
hub / github.com/bloomberg/comdb2 / lua_rawequal

Function lua_rawequal

lua/lapi.c:280–285  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 3

luaB_rawequalFunction · 0.85
luaL_checkudataFunction · 0.85
io_typeFunction · 0.85

Calls 2

index2adrFunction · 0.85
luaO_rawequalObjFunction · 0.85

Tested by

no test coverage detected