MCPcopy Create free account
hub / github.com/Overload-Technologies/Overload / lua_rawequal

Function lua_rawequal

Dependencies/lua/src/lapi.c:328–332  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

326
327
328LUA_API int lua_rawequal (lua_State *L, int index1, int index2) {
329 const TValue *o1 = index2value(L, index1);
330 const TValue *o2 = index2value(L, index2);
331 return (isvalid(L, o1) && isvalid(L, o2)) ? luaV_rawequalobj(o1, o2) : 0;
332}
333
334
335LUA_API void lua_arith (lua_State *L, int op) {

Callers 6

impl_check_metatableFunction · 0.85
luaL_testudataFunction · 0.85
compat53_findfieldFunction · 0.85
luaB_rawequalFunction · 0.85
findfieldFunction · 0.85
luaL_testudataFunction · 0.85

Calls 1

index2valueFunction · 0.85

Tested by

no test coverage detected