Function croaring_sys::roaring_create_iterator [] [src]

pub unsafe extern "C" fn roaring_create_iterator(
    ra: *const roaring_bitmap_t
) -> *mut roaring_uint32_iterator_t

Create an iterator object that can be used to iterate through the values. Caller is responsible for calling roaring_free_iterator. The iterator is initialized. If there is a value, then it->has_value is true. The first value is in it->current_value. The iterator traverses the values in increasing order.

This function calls roaring_init_iterator.