polars_arrow::bitmap::utils

Trait BitChunkIterExact

Source
pub trait BitChunkIterExact<B: BitChunk>: TrustedLen<Item = B> {
    // Required methods
    fn remainder(&self) -> B;
    fn remainder_len(&self) -> usize;

    // Provided method
    fn remainder_iter(&self) -> BitChunkIter<B>  { ... }
}
Expand description

Trait representing an exact iterator over bytes in BitChunk.

Required Methods§

Source

fn remainder(&self) -> B

The remainder of the iterator.

Source

fn remainder_len(&self) -> usize

The number of items in the remainder

Provided Methods§

Source

fn remainder_iter(&self) -> BitChunkIter<B>

An iterator over individual items of the remainder

Implementors§