Free the iterator. */
| 2592 | |
| 2593 | /* Free the iterator. */ |
| 2594 | void raxStop(raxIterator *it) { |
| 2595 | if (it->key != it->key_static_string) rax_free(it->key); |
| 2596 | raxStackFree(&it->stack); |
| 2597 | } |
| 2598 | |
| 2599 | /* Return if the iterator is in an EOF state. This happens when raxSeek() |
| 2600 | * failed to seek an appropriate element, so that raxNext() or raxPrev() |
nothing calls this directly
no test coverage detected