Remove the specified number of chars from the right of the current key. */
| 2392 | |
| 2393 | /* Remove the specified number of chars from the right of the current key. */ |
| 2394 | static inline void raxDefragDelChars(raxDefragIterator *it, size_t count) { |
| 2395 | it->key_len -= count; |
| 2396 | } |
| 2397 | |
| 2398 | /* Build the flags associated with the current item returned by the |
| 2399 | * defragmentation iterator. */ |