[][src]Trait clacc::bigint::BigIntDiv

pub trait BigIntDiv<T> {
    type Output;
    fn div(&self, other: T) -> Self::Output;
}

A trait describing BigInt division.

Associated Types

type Output

Loading content...

Required methods

fn div(&self, other: T) -> Self::Output

Loading content...

Implementors

impl<'a> BigIntDiv<&'a BigIntGmp> for BigIntGmp[src]

type Output = Self

Loading content...