Skip to main content

BooleanCursor

Type Alias BooleanCursor 

Source
pub type BooleanCursor = BooleanCursorInternal<64>;
Expand description

A ColumnCursor that decodes boolean run-length encoded columns.

Stores alternating run lengths of false and true values without the per-value overhead of general RLE. The agg of each true value is 1 and false is 0, so the Acc accumulator counts the number of true values. Uses a 64-item slab size.

Aliased Typeยง

pub struct BooleanCursor { /* private fields */ }