Skip to main content

OddUintXgcdOutput

Type Alias OddUintXgcdOutput 

Source
pub type OddUintXgcdOutput<const LIMBS: usize> = XgcdOutput<LIMBS, OddUint<LIMBS>>;

Aliased Type§

pub struct OddUintXgcdOutput<const LIMBS: usize> {
    pub gcd: Odd<Uint<LIMBS>>,
    pub x: Int<LIMBS>,
    pub y: Int<LIMBS>,
    pub lhs_on_gcd: Uint<LIMBS>,
    pub rhs_on_gcd: Uint<LIMBS>,
}

Fields§

§gcd: Odd<Uint<LIMBS>>

Greatest common divisor

§x: Int<LIMBS>

x;

§y: Int<LIMBS>

y;

§lhs_on_gcd: Uint<LIMBS>

lhs / gcd

§rhs_on_gcd: Uint<LIMBS>

rhs / gcd