MCPcopy Create free account
hub / github.com/F-Stack/f-stack / lua_rawequal

Function lua_rawequal

freebsd/contrib/openzfs/module/lua/lapi.c:283–287  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

281
282
283LUA_API int lua_rawequal (lua_State *L, int index1, int index2) {
284 StkId o1 = index2addr(L, index1);
285 StkId o2 = index2addr(L, index2);
286 return (isvalid(o1) && isvalid(o2)) ? luaV_rawequalobj(o1, o2) : 0;
287}
288
289
290LUA_API void lua_arith (lua_State *L, int op) {

Callers 3

luaB_rawequalFunction · 0.70
findfieldFunction · 0.70
luaL_testudataFunction · 0.70

Calls 1

index2addrFunction · 0.85

Tested by

no test coverage detected