Trait BitIterLE
ff_uint
pub trait BitIterLE { type Iter: Iterator<Item = bool>; fn bit_iter_le(&self) -> Self::Iter; }
type Iter: Iterator<Item = bool>
fn bit_iter_le(&self) -> Self::Iter
impl<I: Uint> BitIterLE for I
type Iter = BitIteratorLE<I>