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