Struct bitvec::BigEndian [−][src]
pub struct BigEndian;
Travels an element starting at the Most Significant Bit and ending at the Least Significant Bit.
Trait Implementations
impl Endian for BigEndian[src]
impl Endian for BigEndianfn curr<T: Bits>(count: u8) -> u8[src]
fn curr<T: Bits>(count: u8) -> u8Compute the bit index at a given count. Read more
const TY: &'static str
fn next<T: Bits>(count: u8) -> (u8, bool)[src]
fn next<T: Bits>(count: u8) -> (u8, bool)Compute the semantic index that logically follows the given index. Read more
fn prev<T: Bits>(count: u8) -> (u8, bool)[src]
fn prev<T: Bits>(count: u8) -> (u8, bool)Compute the semantic index that logically precedes the given index. Read more
fn jump<T: Bits>(count: u8, offset: isize) -> (isize, u8)[src]
fn jump<T: Bits>(count: u8, offset: isize) -> (isize, u8)Computes the bit index at a given semantic offset from the current cursor. Read more