[][src]Trait ff_uint::BitIterBE

pub trait BitIterBE {
    type Iter: Iterator<Item = bool>;
    fn bit_iter_be(&self) -> Self::Iter;
}

Associated Types

type Iter: Iterator<Item = bool>

Loading content...

Required methods

fn bit_iter_be(&self) -> Self::Iter

Loading content...

Implementors

impl<I: Uint> BitIterBE for I[src]

type Iter = BitIteratorBE<I>

Loading content...