pub trait GetBit<O>where
O: BitOrder,{
// Required method
fn get_bit(&self, index: usize) -> bool;
}Expand description
Trait for getting a bit at a given index.
pub trait GetBit<O>where
O: BitOrder,{
// Required method
fn get_bit(&self, index: usize) -> bool;
}Trait for getting a bit at a given index.