Skip to main content

DecodeByLimb

Trait DecodeByLimb 

Source
pub(crate) trait DecodeByLimb {
    // Required methods
    fn limbs_mut(&mut self) -> &mut [Limb];
    fn push_limb(&mut self, limb: Limb) -> bool;
}
Expand description

Allow decoding of integers into fixed and variable-length types

Required Methods§

Source

fn limbs_mut(&mut self) -> &mut [Limb]

Access the limbs as a mutable slice

Source

fn push_limb(&mut self, limb: Limb) -> bool

Append a new most-significant limb

Implementors§