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

Function luaB_rawequal

freebsd/contrib/openzfs/module/lua/lbaselib.c:107–112  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

105
106
107static int luaB_rawequal (lua_State *L) {
108 luaL_checkany(L, 1);
109 luaL_checkany(L, 2);
110 lua_pushboolean(L, lua_rawequal(L, 1, 2));
111 return 1;
112}
113
114
115static int luaB_rawlen (lua_State *L) {

Callers

nothing calls this directly

Calls 3

luaL_checkanyFunction · 0.70
lua_pushbooleanFunction · 0.70
lua_rawequalFunction · 0.70

Tested by

no test coverage detected