pub type BucketItem = Result<(u64, RoaringBitmap), LeafStop>;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(LeafStop),
}