Skip to main content

U16384

Type Alias U16384 

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

16384-bit unsigned big integer.

Aliased Type§

pub struct U16384 {
    pub(crate) limbs: [Limb; 256],
}

Fields§

§limbs: [Limb; 256]

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

Trait Implementations§

Source§

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

Source§

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

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

impl SplitEven for U16384

Source§

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

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