Trait fructose::properties::bezout::Bezout[][src]

pub trait Bezout: GCD {
    fn bezout(&self, rhs: Self) -> (Self, Self, Self);

    fn bezout_coefficients(self, rhs: Self) -> (Self, Self) { ... }
}

Required methods

fn bezout(&self, rhs: Self) -> (Self, Self, Self)[src]

Loading content...

Provided methods

fn bezout_coefficients(self, rhs: Self) -> (Self, Self)[src]

Loading content...

Implementations on Foreign Types

impl Bezout for u8[src]

impl Bezout for u16[src]

impl Bezout for u32[src]

impl Bezout for u64[src]

impl Bezout for u128[src]

impl Bezout for usize[src]

impl Bezout for i8[src]

impl Bezout for i16[src]

impl Bezout for i32[src]

impl Bezout for i64[src]

impl Bezout for i128[src]

impl Bezout for isize[src]

impl Bezout for f32[src]

impl Bezout for f64[src]

Loading content...

Implementors

Loading content...