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
pub(crate) trait DecodeByLimb {
// Required methods
fn limbs_mut(&mut self) -> &mut [Limb];
fn push_limb(&mut self, limb: Limb) -> bool;
}Allow decoding of integers into fixed and variable-length types