[][src]Trait algorithms_edu::algo::math::gcd::Gcd

pub trait Gcd: PrimInt + Signed {
    pub fn gcd(self, other: Self) -> Self { ... }
}

Provided methods

pub fn gcd(self, other: Self) -> Self[src]

Loading content...

Implementors

impl<I: Signed + PrimInt> Gcd for I[src]

Loading content...