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

Function raxEOF

app/redis-6.2.6/src/rax.c:1816–1818  ·  view source on GitHub ↗

Return if the iterator is in an EOF state. This happens when raxSeek() * failed to seek an appropriate element, so that raxNext() or raxPrev() * will return zero, or when an EOF condition was reached while iterating * with raxNext() and raxPrev(). */

Source from the content-addressed store, hash-verified

1814 * will return zero, or when an EOF condition was reached while iterating
1815 * with raxNext() and raxPrev(). */
1816int raxEOF(raxIterator *it) {
1817 return it->flags & RAX_ITER_EOF;
1818}
1819
1820/* Return the number of elements inside the radix tree. */
1821uint64_t raxSize(rax *rax) {

Callers 5

trackingLimitUsedSlotsFunction · 0.85
RM_DictCompareCFunction · 0.85
RM_DictCompareFunction · 0.85
streamIteratorStartFunction · 0.85
xautoclaimCommandFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected