[][src]Trait clacc::bigint::BigIntAdd

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

A trait describing BigInt addition.

Associated Types

type Output

Loading content...

Required methods

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

Loading content...

Implementors

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

type Output = Self

Loading content...