Trait rust_bigint::traits::EGCD[][src]

pub trait EGCD where
    Self: Sized
{ fn egcd(a: &Self, b: &Self) -> (Self, Self, Self); }
Expand description

Trait for the extended eucledian algorithm

Required methods

The extended eucledian algorithm

Implementations on Foreign Types

Implementors