Skip to main content

U4352

Type Alias U4352 

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

4352-bit unsigned big integer.

Aliased Type§

pub struct U4352 {
    pub(crate) limbs: [Limb; 68],
}

Fields§

§limbs: [Limb; 68]

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

Trait Implementations§

Source§

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

Source§

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

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

impl SplitEven for U4352

Source§

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

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