[][src]Trait clacc::bigint::BigIntSub

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

A trait describing BigInt subtraction.

Associated Types

type Output

Loading content...

Required methods

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

Loading content...

Implementors

impl BigIntSub<i64> for BigIntGmp[src]

type Output = Self

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

type Output = Self

Loading content...