Trait ff_uint::BitIterLE[][src]

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

Associated Types

type Iter: Iterator<Item = bool>[src]

Loading content...

Required methods

fn bit_iter_le(&self) -> Self::Iter[src]

Loading content...

Implementors

impl<Fp: PrimeField> BitIterLE for Num<Fp>[src]

type Iter = BitIteratorLE<Fp::Inner>

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

type Iter = BitIteratorLE<I>

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

type Iter = BitIteratorLE<I>

Loading content...