[][src]Type Definition num_bigint::big_digit::DoubleBigDigit

type DoubleBigDigit = u64;

A DoubleBigDigit is the internal type used to do the computations. Its size is the double of the size of BigDigit.

Trait Implementations

impl<'a> Div<BigUint> for &'a DoubleBigDigit[src]

type Output = BigUint

The resulting type after applying the / operator.

impl<'a> Div<&'a BigUint> for DoubleBigDigit[src]

type Output = BigUint

The resulting type after applying the / operator.

impl<'a, 'b> Div<&'a BigUint> for &'b DoubleBigDigit[src]

type Output = BigUint

The resulting type after applying the / operator.

impl Div<BigUint> for DoubleBigDigit[src]

type Output = BigUint

The resulting type after applying the / operator.

impl<'a> Div<BigInt> for &'a DoubleBigDigit[src]

type Output = BigInt

The resulting type after applying the / operator.

impl<'a> Div<&'a BigInt> for DoubleBigDigit[src]

type Output = BigInt

The resulting type after applying the / operator.

impl<'a, 'b> Div<&'a BigInt> for &'b DoubleBigDigit[src]

type Output = BigInt

The resulting type after applying the / operator.

impl Div<BigInt> for DoubleBigDigit[src]

type Output = BigInt

The resulting type after applying the / operator.

impl<'a> Rem<BigUint> for &'a DoubleBigDigit[src]

type Output = BigUint

The resulting type after applying the % operator.

impl<'a> Rem<&'a BigUint> for DoubleBigDigit[src]

type Output = BigUint

The resulting type after applying the % operator.

impl<'a, 'b> Rem<&'a BigUint> for &'b DoubleBigDigit[src]

type Output = BigUint

The resulting type after applying the % operator.

impl Rem<BigUint> for DoubleBigDigit[src]

type Output = BigUint

The resulting type after applying the % operator.

impl<'a> Rem<BigInt> for &'a DoubleBigDigit[src]

type Output = BigInt

The resulting type after applying the % operator.

impl<'a> Rem<&'a BigInt> for DoubleBigDigit[src]

type Output = BigInt

The resulting type after applying the % operator.

impl<'a, 'b> Rem<&'a BigInt> for &'b DoubleBigDigit[src]

type Output = BigInt

The resulting type after applying the % operator.

impl Rem<BigInt> for DoubleBigDigit[src]

type Output = BigInt

The resulting type after applying the % operator.

impl<'a> Sub<BigUint> for &'a DoubleBigDigit[src]

type Output = BigUint

The resulting type after applying the - operator.

impl<'a> Sub<&'a BigUint> for DoubleBigDigit[src]

type Output = BigUint

The resulting type after applying the - operator.

impl<'a, 'b> Sub<&'a BigUint> for &'b DoubleBigDigit[src]

type Output = BigUint

The resulting type after applying the - operator.

impl Sub<BigUint> for DoubleBigDigit[src]

type Output = BigUint

The resulting type after applying the - operator.

impl<'a> Sub<BigInt> for &'a DoubleBigDigit[src]

type Output = BigInt

The resulting type after applying the - operator.

impl<'a> Sub<&'a BigInt> for DoubleBigDigit[src]

type Output = BigInt

The resulting type after applying the - operator.

impl<'a, 'b> Sub<&'a BigInt> for &'b DoubleBigDigit[src]

type Output = BigInt

The resulting type after applying the - operator.

impl Sub<BigInt> for DoubleBigDigit[src]

type Output = BigInt

The resulting type after applying the - operator.

impl Add<BigUint> for DoubleBigDigit[src]

type Output = BigUint

The resulting type after applying the + operator.

impl<'a> Add<BigUint> for &'a DoubleBigDigit[src]

type Output = BigUint

The resulting type after applying the + operator.

impl<'a> Add<&'a BigUint> for DoubleBigDigit[src]

type Output = BigUint

The resulting type after applying the + operator.

impl<'a, 'b> Add<&'a BigUint> for &'b DoubleBigDigit[src]

type Output = BigUint

The resulting type after applying the + operator.

impl Add<BigInt> for DoubleBigDigit[src]

type Output = BigInt

The resulting type after applying the + operator.

impl<'a> Add<BigInt> for &'a DoubleBigDigit[src]

type Output = BigInt

The resulting type after applying the + operator.

impl<'a> Add<&'a BigInt> for DoubleBigDigit[src]

type Output = BigInt

The resulting type after applying the + operator.

impl<'a, 'b> Add<&'a BigInt> for &'b DoubleBigDigit[src]

type Output = BigInt

The resulting type after applying the + operator.

impl Mul<BigUint> for DoubleBigDigit[src]

type Output = BigUint

The resulting type after applying the * operator.

impl<'a> Mul<BigUint> for &'a DoubleBigDigit[src]

type Output = BigUint

The resulting type after applying the * operator.

impl<'a> Mul<&'a BigUint> for DoubleBigDigit[src]

type Output = BigUint

The resulting type after applying the * operator.

impl<'a, 'b> Mul<&'a BigUint> for &'b DoubleBigDigit[src]

type Output = BigUint

The resulting type after applying the * operator.

impl Mul<BigInt> for DoubleBigDigit[src]

type Output = BigInt

The resulting type after applying the * operator.

impl<'a> Mul<BigInt> for &'a DoubleBigDigit[src]

type Output = BigInt

The resulting type after applying the * operator.

impl<'a> Mul<&'a BigInt> for DoubleBigDigit[src]

type Output = BigInt

The resulting type after applying the * operator.

impl<'a, 'b> Mul<&'a BigInt> for &'b DoubleBigDigit[src]

type Output = BigInt

The resulting type after applying the * operator.