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

Function intsetRepr

app/redis-6.2.6/src/intset.c:339–344  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

337
338#if 0
339static void intsetRepr(intset *is) {
340 for (uint32_t i = 0; i < intrev32ifbe(is->length); i++) {
341 printf("%lld\n", (uint64_t)_intsetGet(is,i));
342 }
343 printf("\n");
344}
345
346static void error(char *err) {
347 printf("%s\n", err);

Callers

nothing calls this directly

Calls 2

_intsetGetFunction · 0.85
printfFunction · 0.50

Tested by

no test coverage detected