Skip to main content

U4224

Type Alias U4224 

Source
pub type U4224 = Uint<{ _ }>;
Expand description

4224-bit unsigned big integer.

Aliased Type§

pub struct U4224 {
    pub(crate) limbs: [Limb; 66],
}

Fields§

§limbs: [Limb; 66]

Inner limb array. Stored from least significant to most significant.

Trait Implementations§

Source§

impl Split<{ <$name>::LIMBS / 2 }> for U4224

Source§

type Output = Uint<{ <$name>::LIMBS / 2 }>

High limbs of output: having the width of Self minus LO.
Source§

impl SplitEven for U4224

Source§

type Output = Uint<{ <$name>::LIMBS / 2 }>

Split output: each component having half the width of Self.