Remove the specified number of chars from the right of the current * iterator key. */
| 1551 | /* Remove the specified number of chars from the right of the current |
| 1552 | * iterator key. */ |
| 1553 | void raxIteratorDelChars(raxIterator *it, size_t count) { |
| 1554 | it->key_len -= count; |
| 1555 | } |
| 1556 | |
| 1557 | static inline int raxIteratorIsInlineLeaf(raxIterator *it) { |
| 1558 | return it->flags & RAX_ITER_INLINE_LEAF; |
no outgoing calls
no test coverage detected