pub trait PowerOf2DigitIterator<T>: Iterator<Item = T> + DoubleEndedIterator<Item = T> {
    fn get(&self, index: u64) -> T;
}
Expand description

An iterator over a value’s base-$2^k$ digits.

Required Methods

Implementors