EucExt

Trait EucExt 

Source
pub trait EucExt<T>
where T: One + Zero + Copy + Mul<Output = T> + Div<Output = T> + Rem<Output = T> + Sub<Output = T> + Ord,
{ // Provided method fn euc_ext(d1: T, d2: T) -> EucRes<T> { ... } }

Provided Methods§

Source

fn euc_ext(d1: T, d2: T) -> EucRes<T>

Returns extended euclidean algorithm result.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§