roaring_uint32_iterator_skip

Function roaring_uint32_iterator_skip 

Source
pub unsafe extern "C" fn roaring_uint32_iterator_skip(
    it: *mut roaring_uint32_iterator_t,
    count: u32,
) -> u32
Expand description

Skip the next ${count} values from iterator. Returns the number of values actually skipped. The number can be smaller than ${count}, which means that iterator is drained.

This function is equivalent to calling roaring_uint32_iterator_advance() ${count} times but is much more efficient.