MCPcopy Create free account
hub / github.com/Snapchat/KeyDB / _intsetGet

Function _intsetGet

src/intset.c:77–79  ·  view source on GitHub ↗

Return the value at pos, using the configured encoding. */

Source from the content-addressed store, hash-verified

75
76/* Return the value at pos, using the configured encoding. */
77static int64_t _intsetGet(intset *is, int pos) {
78 return _intsetGetEncoded(is,pos,intrev32ifbe(is->encoding));
79}
80
81/* Set the value at pos, using the configured encoding. */
82static void _intsetSet(intset *is, int pos, int64_t value) {

Callers 5

intsetSearchFunction · 0.85
intsetRandomFunction · 0.85
intsetGetFunction · 0.85
intsetValidateIntegrityFunction · 0.85
intsetReprFunction · 0.85

Calls 1

_intsetGetEncodedFunction · 0.85

Tested by

no test coverage detected