[][src]Trait zkp_u256::GCD

pub trait GCD: Sized {
    pub fn gcd(a: &Self, b: &Self) -> Self;
pub fn gcd_extended(a: &Self, b: &Self) -> (Self, Self, Self, bool); }

Required methods

pub fn gcd(a: &Self, b: &Self) -> Self[src]

pub fn gcd_extended(a: &Self, b: &Self) -> (Self, Self, Self, bool)[src]

Loading content...

Implementors

impl GCD for U256[src]

Loading content...