[][src]Trait ff_uint::BitIterLE

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

Associated Types

type Iter: Iterator<Item = bool>

Loading content...

Required methods

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

Loading content...

Implementors

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

type Iter = BitIteratorLE<I>

Loading content...