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

Function luaB_rawequal

3rd/lua-5.4.3/src/lbaselib.c:149–154  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

147
148
149static int luaB_rawequal (lua_State *L) {
150 luaL_checkany(L, 1);
151 luaL_checkany(L, 2);
152 lua_pushboolean(L, lua_rawequal(L, 1, 2));
153 return 1;
154}
155
156
157static int luaB_rawlen (lua_State *L) {

Callers

nothing calls this directly

Calls 3

luaL_checkanyFunction · 0.85
lua_pushbooleanFunction · 0.85
lua_rawequalFunction · 0.85

Tested by

no test coverage detected