Trait clacc::BigIntMul[][src]

pub trait BigIntMul<T> {
    type Output;
    fn mul(&self, other: T) -> Self::Output;
}
Expand description

A trait describing BigInt multiplication.

Associated Types

Required methods

Implementors