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

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

Trait representing an exact iterator over bytes in BitChunk.

Required Methods§

The remainder of the iterator.

The number of items in the remainder

Provided Methods§

An iterator over individual items of the remainder

Implementors§