Trait MulInv

Source
pub trait MulInv {
    type Output;

    // Required method
    fn mul_inv(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn mul_inv(self) -> Self::Output

Implementors§

Source§

impl<M> MulInv for Modint<u32, M>
where M: Arithmetic<T = u32> + Copy,

Source§

impl<M> MulInv for Modint<u64, M>
where M: Arithmetic<T = u64> + Copy,