MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / lua_rawequal

Function lua_rawequal

3rd/lua-5.4.3/src/lapi.c:322–326  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

320
321
322LUA_API int lua_rawequal (lua_State *L, int index1, int index2) {
323 const TValue *o1 = index2value(L, index1);
324 const TValue *o2 = index2value(L, index2);
325 return (isvalid(L, o1) && isvalid(L, o2)) ? luaV_rawequalobj(o1, o2) : 0;
326}
327
328
329LUA_API void lua_arith (lua_State *L, int op) {

Callers 3

luaB_rawequalFunction · 0.85
findfieldFunction · 0.85
luaL_testudataFunction · 0.85

Calls 1

index2valueFunction · 0.85

Tested by

no test coverage detected