Type Definition num_bigint::big_digit::BigDigit
[−]
[src]
type BigDigit = u32;
A BigDigit is a BigUint's composing element.
Trait Implementations
impl Add<BigUint> for BigDigit[src]
type Output = BigUint
The resulting type after applying the + operator.
fn add(self, other: BigUint) -> BigUint[src]
Performs the + operation.
impl<'a> Add<&'a BigDigit> for BigUint[src]
type Output = BigUint
The resulting type after applying the + operator.
fn add(self, other: &BigDigit) -> BigUint[src]
Performs the + operation.
impl<'a> Add<BigUint> for &'a BigDigit[src]
type Output = BigUint
The resulting type after applying the + operator.
fn add(self, other: BigUint) -> BigUint[src]
Performs the + operation.
impl<'a> Add<BigDigit> for &'a BigUint[src]
type Output = BigUint
The resulting type after applying the + operator.
fn add(self, other: BigDigit) -> BigUint[src]
Performs the + operation.
impl<'a> Add<&'a BigUint> for BigDigit[src]
type Output = BigUint
The resulting type after applying the + operator.
fn add(self, other: &BigUint) -> BigUint[src]
Performs the + operation.
impl<'a, 'b> Add<&'b BigDigit> for &'a BigUint[src]
type Output = BigUint
The resulting type after applying the + operator.
fn add(self, other: &BigDigit) -> BigUint[src]
Performs the + operation.
impl<'a, 'b> Add<&'a BigUint> for &'b BigDigit[src]
type Output = BigUint
The resulting type after applying the + operator.
fn add(self, other: &BigUint) -> BigUint[src]
Performs the + operation.
impl Add<BigDigit> for BigUint[src]
type Output = BigUint
The resulting type after applying the + operator.
fn add(self, other: BigDigit) -> BigUint[src]
Performs the + operation.
impl AddAssign<BigDigit> for BigUint[src]
fn add_assign(&mut self, other: BigDigit)[src]
Performs the += operation.
impl<'a> Sub<&'a BigDigit> for BigUint[src]
type Output = BigUint
The resulting type after applying the - operator.
fn sub(self, other: &BigDigit) -> BigUint[src]
Performs the - operation.
impl<'a> Sub<BigUint> for &'a BigDigit[src]
type Output = BigUint
The resulting type after applying the - operator.
fn sub(self, other: BigUint) -> BigUint[src]
Performs the - operation.
impl<'a> Sub<BigDigit> for &'a BigUint[src]
type Output = BigUint
The resulting type after applying the - operator.
fn sub(self, other: BigDigit) -> BigUint[src]
Performs the - operation.
impl<'a> Sub<&'a BigUint> for BigDigit[src]
type Output = BigUint
The resulting type after applying the - operator.
fn sub(self, other: &BigUint) -> BigUint[src]
Performs the - operation.
impl<'a, 'b> Sub<&'b BigDigit> for &'a BigUint[src]
type Output = BigUint
The resulting type after applying the - operator.
fn sub(self, other: &BigDigit) -> BigUint[src]
Performs the - operation.
impl<'a, 'b> Sub<&'a BigUint> for &'b BigDigit[src]
type Output = BigUint
The resulting type after applying the - operator.
fn sub(self, other: &BigUint) -> BigUint[src]
Performs the - operation.
impl Sub<BigDigit> for BigUint[src]
type Output = BigUint
The resulting type after applying the - operator.
fn sub(self, other: BigDigit) -> BigUint[src]
Performs the - operation.
impl SubAssign<BigDigit> for BigUint[src]
fn sub_assign(&mut self, other: BigDigit)[src]
Performs the -= operation.
impl Sub<BigUint> for BigDigit[src]
type Output = BigUint
The resulting type after applying the - operator.
fn sub(self, other: BigUint) -> BigUint[src]
Performs the - operation.
impl Mul<BigUint> for BigDigit[src]
type Output = BigUint
The resulting type after applying the * operator.
fn mul(self, other: BigUint) -> BigUint[src]
Performs the * operation.
impl<'a> Mul<&'a BigDigit> for BigUint[src]
type Output = BigUint
The resulting type after applying the * operator.
fn mul(self, other: &BigDigit) -> BigUint[src]
Performs the * operation.
impl<'a> Mul<BigUint> for &'a BigDigit[src]
type Output = BigUint
The resulting type after applying the * operator.
fn mul(self, other: BigUint) -> BigUint[src]
Performs the * operation.
impl<'a> Mul<BigDigit> for &'a BigUint[src]
type Output = BigUint
The resulting type after applying the * operator.
fn mul(self, other: BigDigit) -> BigUint[src]
Performs the * operation.
impl<'a> Mul<&'a BigUint> for BigDigit[src]
type Output = BigUint
The resulting type after applying the * operator.
fn mul(self, other: &BigUint) -> BigUint[src]
Performs the * operation.
impl<'a, 'b> Mul<&'b BigDigit> for &'a BigUint[src]
type Output = BigUint
The resulting type after applying the * operator.
fn mul(self, other: &BigDigit) -> BigUint[src]
Performs the * operation.
impl<'a, 'b> Mul<&'a BigUint> for &'b BigDigit[src]
type Output = BigUint
The resulting type after applying the * operator.
fn mul(self, other: &BigUint) -> BigUint[src]
Performs the * operation.
impl Mul<BigDigit> for BigUint[src]
type Output = BigUint
The resulting type after applying the * operator.
fn mul(self, other: BigDigit) -> BigUint[src]
Performs the * operation.
impl MulAssign<BigDigit> for BigUint[src]
fn mul_assign(&mut self, other: BigDigit)[src]
Performs the *= operation.
impl<'a> Div<&'a BigDigit> for BigUint[src]
type Output = BigUint
The resulting type after applying the / operator.
fn div(self, other: &BigDigit) -> BigUint[src]
Performs the / operation.
impl<'a> Div<BigUint> for &'a BigDigit[src]
type Output = BigUint
The resulting type after applying the / operator.
fn div(self, other: BigUint) -> BigUint[src]
Performs the / operation.
impl<'a> Div<BigDigit> for &'a BigUint[src]
type Output = BigUint
The resulting type after applying the / operator.
fn div(self, other: BigDigit) -> BigUint[src]
Performs the / operation.
impl<'a> Div<&'a BigUint> for BigDigit[src]
type Output = BigUint
The resulting type after applying the / operator.
fn div(self, other: &BigUint) -> BigUint[src]
Performs the / operation.
impl<'a, 'b> Div<&'b BigDigit> for &'a BigUint[src]
type Output = BigUint
The resulting type after applying the / operator.
fn div(self, other: &BigDigit) -> BigUint[src]
Performs the / operation.
impl<'a, 'b> Div<&'a BigUint> for &'b BigDigit[src]
type Output = BigUint
The resulting type after applying the / operator.
fn div(self, other: &BigUint) -> BigUint[src]
Performs the / operation.
impl Div<BigDigit> for BigUint[src]
type Output = BigUint
The resulting type after applying the / operator.
fn div(self, other: BigDigit) -> BigUint[src]
Performs the / operation.
impl DivAssign<BigDigit> for BigUint[src]
fn div_assign(&mut self, other: BigDigit)[src]
Performs the /= operation.
impl Div<BigUint> for BigDigit[src]
type Output = BigUint
The resulting type after applying the / operator.
fn div(self, other: BigUint) -> BigUint[src]
Performs the / operation.
impl<'a> Rem<&'a BigDigit> for BigUint[src]
type Output = BigUint
The resulting type after applying the % operator.
fn rem(self, other: &BigDigit) -> BigUint[src]
Performs the % operation.
impl<'a> Rem<BigUint> for &'a BigDigit[src]
type Output = BigUint
The resulting type after applying the % operator.
fn rem(self, other: BigUint) -> BigUint[src]
Performs the % operation.
impl<'a> Rem<BigDigit> for &'a BigUint[src]
type Output = BigUint
The resulting type after applying the % operator.
fn rem(self, other: BigDigit) -> BigUint[src]
Performs the % operation.
impl<'a> Rem<&'a BigUint> for BigDigit[src]
type Output = BigUint
The resulting type after applying the % operator.
fn rem(self, other: &BigUint) -> BigUint[src]
Performs the % operation.
impl<'a, 'b> Rem<&'b BigDigit> for &'a BigUint[src]
type Output = BigUint
The resulting type after applying the % operator.
fn rem(self, other: &BigDigit) -> BigUint[src]
Performs the % operation.
impl<'a, 'b> Rem<&'a BigUint> for &'b BigDigit[src]
type Output = BigUint
The resulting type after applying the % operator.
fn rem(self, other: &BigUint) -> BigUint[src]
Performs the % operation.
impl Rem<BigDigit> for BigUint[src]
type Output = BigUint
The resulting type after applying the % operator.
fn rem(self, other: BigDigit) -> BigUint[src]
Performs the % operation.
impl RemAssign<BigDigit> for BigUint[src]
fn rem_assign(&mut self, other: BigDigit)[src]
Performs the %= operation.
impl Rem<BigUint> for BigDigit[src]
type Output = BigUint
The resulting type after applying the % operator.
fn rem(self, other: BigUint) -> BigUint[src]
Performs the % operation.
impl Add<BigInt> for BigDigit[src]
type Output = BigInt
The resulting type after applying the + operator.
fn add(self, other: BigInt) -> BigInt[src]
Performs the + operation.
impl<'a> Add<&'a BigDigit> for BigInt[src]
type Output = BigInt
The resulting type after applying the + operator.
fn add(self, other: &BigDigit) -> BigInt[src]
Performs the + operation.
impl<'a> Add<BigInt> for &'a BigDigit[src]
type Output = BigInt
The resulting type after applying the + operator.
fn add(self, other: BigInt) -> BigInt[src]
Performs the + operation.
impl<'a> Add<BigDigit> for &'a BigInt[src]
type Output = BigInt
The resulting type after applying the + operator.
fn add(self, other: BigDigit) -> BigInt[src]
Performs the + operation.
impl<'a> Add<&'a BigInt> for BigDigit[src]
type Output = BigInt
The resulting type after applying the + operator.
fn add(self, other: &BigInt) -> BigInt[src]
Performs the + operation.
impl<'a, 'b> Add<&'b BigDigit> for &'a BigInt[src]
type Output = BigInt
The resulting type after applying the + operator.
fn add(self, other: &BigDigit) -> BigInt[src]
Performs the + operation.
impl<'a, 'b> Add<&'a BigInt> for &'b BigDigit[src]
type Output = BigInt
The resulting type after applying the + operator.
fn add(self, other: &BigInt) -> BigInt[src]
Performs the + operation.
impl Add<BigDigit> for BigInt[src]
type Output = BigInt
The resulting type after applying the + operator.
fn add(self, other: BigDigit) -> BigInt[src]
Performs the + operation.
impl<'a> Sub<&'a BigDigit> for BigInt[src]
type Output = BigInt
The resulting type after applying the - operator.
fn sub(self, other: &BigDigit) -> BigInt[src]
Performs the - operation.
impl<'a> Sub<BigInt> for &'a BigDigit[src]
type Output = BigInt
The resulting type after applying the - operator.
fn sub(self, other: BigInt) -> BigInt[src]
Performs the - operation.
impl<'a> Sub<BigDigit> for &'a BigInt[src]
type Output = BigInt
The resulting type after applying the - operator.
fn sub(self, other: BigDigit) -> BigInt[src]
Performs the - operation.
impl<'a> Sub<&'a BigInt> for BigDigit[src]
type Output = BigInt
The resulting type after applying the - operator.
fn sub(self, other: &BigInt) -> BigInt[src]
Performs the - operation.
impl<'a, 'b> Sub<&'b BigDigit> for &'a BigInt[src]
type Output = BigInt
The resulting type after applying the - operator.
fn sub(self, other: &BigDigit) -> BigInt[src]
Performs the - operation.
impl<'a, 'b> Sub<&'a BigInt> for &'b BigDigit[src]
type Output = BigInt
The resulting type after applying the - operator.
fn sub(self, other: &BigInt) -> BigInt[src]
Performs the - operation.
impl Sub<BigDigit> for BigInt[src]
type Output = BigInt
The resulting type after applying the - operator.
fn sub(self, other: BigDigit) -> BigInt[src]
Performs the - operation.
impl Sub<BigInt> for BigDigit[src]
type Output = BigInt
The resulting type after applying the - operator.
fn sub(self, other: BigInt) -> BigInt[src]
Performs the - operation.
impl Mul<BigInt> for BigDigit[src]
type Output = BigInt
The resulting type after applying the * operator.
fn mul(self, other: BigInt) -> BigInt[src]
Performs the * operation.
impl<'a> Mul<&'a BigDigit> for BigInt[src]
type Output = BigInt
The resulting type after applying the * operator.
fn mul(self, other: &BigDigit) -> BigInt[src]
Performs the * operation.
impl<'a> Mul<BigInt> for &'a BigDigit[src]
type Output = BigInt
The resulting type after applying the * operator.
fn mul(self, other: BigInt) -> BigInt[src]
Performs the * operation.
impl<'a> Mul<BigDigit> for &'a BigInt[src]
type Output = BigInt
The resulting type after applying the * operator.
fn mul(self, other: BigDigit) -> BigInt[src]
Performs the * operation.
impl<'a> Mul<&'a BigInt> for BigDigit[src]
type Output = BigInt
The resulting type after applying the * operator.
fn mul(self, other: &BigInt) -> BigInt[src]
Performs the * operation.
impl<'a, 'b> Mul<&'b BigDigit> for &'a BigInt[src]
type Output = BigInt
The resulting type after applying the * operator.
fn mul(self, other: &BigDigit) -> BigInt[src]
Performs the * operation.
impl<'a, 'b> Mul<&'a BigInt> for &'b BigDigit[src]
type Output = BigInt
The resulting type after applying the * operator.
fn mul(self, other: &BigInt) -> BigInt[src]
Performs the * operation.
impl Mul<BigDigit> for BigInt[src]
type Output = BigInt
The resulting type after applying the * operator.
fn mul(self, other: BigDigit) -> BigInt[src]
Performs the * operation.
impl<'a> Div<&'a BigDigit> for BigInt[src]
type Output = BigInt
The resulting type after applying the / operator.
fn div(self, other: &BigDigit) -> BigInt[src]
Performs the / operation.
impl<'a> Div<BigInt> for &'a BigDigit[src]
type Output = BigInt
The resulting type after applying the / operator.
fn div(self, other: BigInt) -> BigInt[src]
Performs the / operation.
impl<'a> Div<BigDigit> for &'a BigInt[src]
type Output = BigInt
The resulting type after applying the / operator.
fn div(self, other: BigDigit) -> BigInt[src]
Performs the / operation.
impl<'a> Div<&'a BigInt> for BigDigit[src]
type Output = BigInt
The resulting type after applying the / operator.
fn div(self, other: &BigInt) -> BigInt[src]
Performs the / operation.
impl<'a, 'b> Div<&'b BigDigit> for &'a BigInt[src]
type Output = BigInt
The resulting type after applying the / operator.
fn div(self, other: &BigDigit) -> BigInt[src]
Performs the / operation.
impl<'a, 'b> Div<&'a BigInt> for &'b BigDigit[src]
type Output = BigInt
The resulting type after applying the / operator.
fn div(self, other: &BigInt) -> BigInt[src]
Performs the / operation.
impl Div<BigDigit> for BigInt[src]
type Output = BigInt
The resulting type after applying the / operator.
fn div(self, other: BigDigit) -> BigInt[src]
Performs the / operation.
impl Div<BigInt> for BigDigit[src]
type Output = BigInt
The resulting type after applying the / operator.
fn div(self, other: BigInt) -> BigInt[src]
Performs the / operation.
impl<'a> Rem<&'a BigDigit> for BigInt[src]
type Output = BigInt
The resulting type after applying the % operator.
fn rem(self, other: &BigDigit) -> BigInt[src]
Performs the % operation.
impl<'a> Rem<BigInt> for &'a BigDigit[src]
type Output = BigInt
The resulting type after applying the % operator.
fn rem(self, other: BigInt) -> BigInt[src]
Performs the % operation.
impl<'a> Rem<BigDigit> for &'a BigInt[src]
type Output = BigInt
The resulting type after applying the % operator.
fn rem(self, other: BigDigit) -> BigInt[src]
Performs the % operation.
impl<'a> Rem<&'a BigInt> for BigDigit[src]
type Output = BigInt
The resulting type after applying the % operator.
fn rem(self, other: &BigInt) -> BigInt[src]
Performs the % operation.
impl<'a, 'b> Rem<&'b BigDigit> for &'a BigInt[src]
type Output = BigInt
The resulting type after applying the % operator.
fn rem(self, other: &BigDigit) -> BigInt[src]
Performs the % operation.
impl<'a, 'b> Rem<&'a BigInt> for &'b BigDigit[src]
type Output = BigInt
The resulting type after applying the % operator.
fn rem(self, other: &BigInt) -> BigInt[src]
Performs the % operation.
impl Rem<BigDigit> for BigInt[src]
type Output = BigInt
The resulting type after applying the % operator.
fn rem(self, other: BigDigit) -> BigInt[src]
Performs the % operation.