Type Alias croaring_sys::roaring64_bulk_context_t

source ·
pub type roaring64_bulk_context_t = roaring64_bulk_context_s;
Expand description

A bit of context usable with roaring64_bitmap_*_bulk() functions.

Should be initialized with {0} (or memset() to all zeros). Callers should treat it as an opaque type.

A context may only be used with a single bitmap (unless re-initialized to zero), and any modification to a bitmap (other than modifications performed with _bulk() functions with the context passed) will invalidate any contexts associated with that bitmap.

Aliased Type§

struct roaring64_bulk_context_t {
    pub high_bytes: [u8; 6],
    pub leaf: *mut roaring64_leaf_s,
}

Fields§

§high_bytes: [u8; 6]§leaf: *mut roaring64_leaf_s