BucketItem

Type Alias BucketItem 

Source
pub type BucketItem = BitmapScanResult<(u64, RoaringBitmap)>;
Expand description

A stream of (bucket_id, RoaringBitmap) in the requested bucket order. Bitmap positions are relative to the bucket (u32 offsets [0, BUCKET_SIZE))

  • edge trimming against the requested range happens at the flatten step.

Aliased Type§

pub enum BucketItem {
    Ok((u64, RoaringBitmap)),
    Err(BitmapScanError),
}

Variants§

§1.0.0

Ok((u64, RoaringBitmap))

Contains the success value

§1.0.0

Err(BitmapScanError)

Contains the error value