Skip to main content

U1280

Type Alias U1280 

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

1280-bit unsigned big integer.

Aliased Type§

pub struct U1280 {
    pub(crate) limbs: [Limb; 20],
}

Fields§

§limbs: [Limb; 20]

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

Trait Implementations§

Source§

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

Source§

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

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

impl SplitEven for U1280

Source§

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

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