MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / andaux

Function andaux

third-party/lua-5.2.4/src/lbitlib.c:36–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34
35
36static b_uint andaux (lua_State *L) {
37 int i, n = lua_gettop(L);
38 b_uint r = ~(b_uint)0;
39 for (i = 1; i <= n; i++)
40 r &= luaL_checkunsigned(L, i);
41 return trim(r);
42}
43
44
45static int b_and (lua_State *L) {

Callers 2

b_andFunction · 0.70
b_testFunction · 0.70

Calls 2

luaL_checkunsignedFunction · 0.85
lua_gettopFunction · 0.70

Tested by

no test coverage detected