MCPcopy Create free account
hub / github.com/DFHack/dfhack / lua_rawequal

Function lua_rawequal

depends/lua/src/lapi.c:295–299  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 11

convert_to_exceptionFunction · 0.85
decode_matinfoFunction · 0.85
check_pen_nativeFunction · 0.85
check_penarray_nativeFunction · 0.85
check_random_nativeFunction · 0.85
is_type_compatibleFunction · 0.85
copy_tableFunction · 0.85
get_object_addrMethod · 0.85
luaB_rawequalFunction · 0.85
findfieldFunction · 0.85
luaL_testudataFunction · 0.85

Calls 1

index2addrFunction · 0.85

Tested by

no test coverage detected