[][src]Function croaring_sys_mw::roaring_create_iterator

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 this iterator points to the first value and it->has_value is true. The value is in it->current_value.

This function calls roaring_init_iterator.