Function croaring_sys::roaring64_iterator_create

source ยท
pub unsafe extern "C" fn roaring64_iterator_create(
    r: *const roaring64_bitmap_t
) -> *mut roaring64_iterator_t
Expand description

Create an iterator object that can be used to iterate through the values. Caller is responsible for calling roaring64_iterator_free().

The iterator is initialized. If there is a value, then this iterator points to the first value and roaring64_iterator_has_value() returns true. The value can be retrieved with roaring64_iterator_value().