MCPcopy Create free account
hub / github.com/BZFlag-Dev/bzflag / lua_rawequal

Function lua_rawequal

other_src/lua/src/lapi.cpp: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 5

testpatternFunction · 0.70
io_typeFunction · 0.70
luaL_checkudataFunction · 0.70
luaL_testudataFunction · 0.70
luaB_rawequalFunction · 0.70

Calls 2

index2adrFunction · 0.70
luaO_rawequalObjFunction · 0.70

Tested by

no test coverage detected