Trait nekolib::ds::binary_trie::BinaryInt
source · pub trait BinaryInt: Copy + AddAssign<Self> + Eq + Debug {
// Required methods
fn zero() -> Self;
fn bits(self) -> Bits<Self> ⓘ;
fn test(self, shift: u32) -> bool;
fn push(&mut self, bit: bool);
fn pop(&mut self);
}