Remove the specified number of chars from the right of the current * iterator key. */
| 1293 | /* Remove the specified number of chars from the right of the current |
| 1294 | * iterator key. */ |
| 1295 | void raxIteratorDelChars(raxIterator *it, size_t count) { |
| 1296 | it->key_len -= count; |
| 1297 | } |
| 1298 | |
| 1299 | /* Do an iteration step towards the next element. At the end of the step the |
| 1300 | * iterator key will represent the (new) current key. If it is not possible |
no outgoing calls
no test coverage detected