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

Function lua_rawequal

src/Chain/libraries/glua/lapi.cpp:298–302  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

296
297
298LUA_API int lua_rawequal(lua_State *L, int index1, int index2) {
299 StkId o1 = index2addr(L, index1);
300 StkId o2 = index2addr(L, index2);
301 return (isvalid(o1) && isvalid(o2)) ? luaV_rawequalobj(o1, o2) : 0;
302}
303
304
305LUA_API void lua_arith(lua_State *L, int op) {

Callers 3

findfieldFunction · 0.85
luaL_testudataFunction · 0.85
luaB_rawequalFunction · 0.85

Calls 1

index2addrFunction · 0.85

Tested by

no test coverage detected