Free the iterator. */
| 1805 | |
| 1806 | /* Free the iterator. */ |
| 1807 | void raxStop(raxIterator *it) { |
| 1808 | if (it->key != it->key_static_string) rax_free(it->key); |
| 1809 | raxStackFree(&it->stack); |
| 1810 | } |
| 1811 | |
| 1812 | /* Return if the iterator is in an EOF state. This happens when raxSeek() |
| 1813 | * failed to seek an appropriate element, so that raxNext() or raxPrev() |
no test coverage detected