Struct BigInt

Source
pub struct BigInt(/* private fields */);

Implementationsยง

Sourceยง

impl BigInt

Source

pub fn new(sign: Sign, digits: Vec<u32>) -> BigInt

Source

pub fn from_biguint(sign: Sign, abs: BigUint) -> BigInt

Source

pub fn from_slice(sign: Sign, slice: &[u32]) -> BigInt

Source

pub fn assign_from_slice(&mut self, sign: Sign, slice: &[u32])

Source

pub fn from_bytes_be(sign: Sign, bytes: &[u8]) -> BigInt

Source

pub fn from_bytes_le(sign: Sign, bytes: &[u8]) -> BigInt

Source

pub fn from_signed_bytes_be(digits: &[u8]) -> BigInt

Source

pub fn from_signed_bytes_le(digits: &[u8]) -> BigInt

Source

pub fn parse_bytes(bytes: &[u8], radix: u32) -> Option<BigInt>

Source

pub fn from_radix_be(sign: Sign, buf: &[u8], radix: u32) -> Option<BigInt>

Source

pub fn from_radix_le(sign: Sign, buf: &[u8], radix: u32) -> Option<BigInt>

Source

pub fn to_bytes_be(&self) -> (Sign, Vec<u8>)

Source

pub fn to_bytes_le(&self) -> (Sign, Vec<u8>)

Source

pub fn to_u32_digits(&self) -> (Sign, Vec<u32>)

Source

pub fn to_u64_digits(&self) -> (Sign, Vec<u64>)

Source

pub fn iter_u32_digits(&self) -> U32Digits<'_> โ“˜

Source

pub fn iter_u64_digits(&self) -> U64Digits<'_> โ“˜

Source

pub fn to_signed_bytes_be(&self) -> Vec<u8> โ“˜

Source

pub fn to_signed_bytes_le(&self) -> Vec<u8> โ“˜

Source

pub fn to_str_radix(&self, radix: u32) -> String

Source

pub fn to_radix_be(&self, radix: u32) -> (Sign, Vec<u8>)

Source

pub fn to_radix_le(&self, radix: u32) -> (Sign, Vec<u8>)

Source

pub fn sign(&self) -> Sign

Source

pub fn magnitude(&self) -> &BigUint

Source

pub fn into_parts(self) -> (Sign, BigUint)

Source

pub fn bits(&self) -> u64

Source

pub fn to_biguint(&self) -> Option<BigUint>

Source

pub fn checked_add(&self, v: &BigInt) -> Option<BigInt>

Source

pub fn checked_sub(&self, v: &BigInt) -> Option<BigInt>

Source

pub fn checked_mul(&self, v: &BigInt) -> Option<BigInt>

Source

pub fn checked_div(&self, v: &BigInt) -> Option<BigInt>

Source

pub fn pow(&self, exponent: u32) -> BigInt

Source

pub fn modpow(&self, exponent: &BigInt, modulus: &BigInt) -> BigInt

Source

pub fn sqrt(&self) -> BigInt

Source

pub fn cbrt(&self) -> BigInt

Source

pub fn nth_root(&self, n: u32) -> BigInt

Source

pub fn trailing_zeros(&self) -> Option<u64>

Source

pub fn bit(&self, bit: u64) -> bool

Source

pub fn set_bit(&mut self, bit: u64, value: bool)

Trait Implementationsยง

Sourceยง

impl Add<&BigInt> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &BigInt) -> <&BigInt as Add<&BigInt>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<&BigInt> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &BigInt) -> <BigInt as Add<&BigInt>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<&i128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &i128) -> <&BigInt as Add<&i128>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<&i128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &i128) -> <BigInt as Add<&i128>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<&i16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &i16) -> <&BigInt as Add<&i16>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<&i16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &i16) -> <BigInt as Add<&i16>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<&i32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &i32) -> <&BigInt as Add<&i32>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<&i32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &i32) -> <BigInt as Add<&i32>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<&i64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &i64) -> <&BigInt as Add<&i64>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<&i64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &i64) -> <BigInt as Add<&i64>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<&i8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &i8) -> <&BigInt as Add<&i8>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<&i8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &i8) -> <BigInt as Add<&i8>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<&isize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &isize) -> <&BigInt as Add<&isize>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<&isize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &isize) -> <BigInt as Add<&isize>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<&u128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &u128) -> <&BigInt as Add<&u128>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<&u128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &u128) -> <BigInt as Add<&u128>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<&u16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &u16) -> <&BigInt as Add<&u16>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<&u16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &u16) -> <BigInt as Add<&u16>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<&u32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &u32) -> <&BigInt as Add<&u32>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<&u32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &u32) -> <BigInt as Add<&u32>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<&u64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &u64) -> <&BigInt as Add<&u64>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<&u64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &u64) -> <BigInt as Add<&u64>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<&u8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &u8) -> <&BigInt as Add<&u8>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<&u8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &u8) -> <BigInt as Add<&u8>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<&usize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &usize) -> <&BigInt as Add<&usize>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<&usize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: &usize) -> <BigInt as Add<&usize>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<BigInt> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: BigInt) -> <&BigInt as Add<BigInt>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<i128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: i128) -> <&BigInt as Add<i128>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<i128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: i128) -> <BigInt as Add<i128>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<i16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: i16) -> <&BigInt as Add<i16>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<i16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: i16) -> <BigInt as Add<i16>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<i32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: i32) -> <&BigInt as Add<i32>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<i32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: i32) -> <BigInt as Add<i32>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<i64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: i64) -> <&BigInt as Add<i64>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<i64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: i64) -> <BigInt as Add<i64>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<i8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: i8) -> <&BigInt as Add<i8>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<i8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: i8) -> <BigInt as Add<i8>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<isize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: isize) -> <&BigInt as Add<isize>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<isize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: isize) -> <BigInt as Add<isize>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<u128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: u128) -> <&BigInt as Add<u128>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<u128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: u128) -> <BigInt as Add<u128>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<u16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: u16) -> <&BigInt as Add<u16>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<u16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: u16) -> <BigInt as Add<u16>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<u32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: u32) -> <&BigInt as Add<u32>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<u32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: u32) -> <BigInt as Add<u32>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<u64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: u64) -> <&BigInt as Add<u64>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<u64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: u64) -> <BigInt as Add<u64>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<u8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: u8) -> <&BigInt as Add<u8>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<u8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: u8) -> <BigInt as Add<u8>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<usize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: usize) -> <&BigInt as Add<usize>>::Output

Performs the + operation. Read more
Sourceยง

impl Add<usize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: usize) -> <BigInt as Add<usize>>::Output

Performs the + operation. Read more
Sourceยง

impl Add for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the + operator.
Sourceยง

fn add(self, rhs: BigInt) -> <BigInt as Add>::Output

Performs the + operation. Read more
Sourceยง

impl AddAssign<&BigInt> for BigInt

Sourceยง

fn add_assign(&mut self, rhs: &BigInt)

Performs the += operation. Read more
Sourceยง

impl AddAssign<&i128> for BigInt

Sourceยง

fn add_assign(&mut self, rhs: &i128)

Performs the += operation. Read more
Sourceยง

impl AddAssign<&i16> for BigInt

Sourceยง

fn add_assign(&mut self, rhs: &i16)

Performs the += operation. Read more
Sourceยง

impl AddAssign<&i32> for BigInt

Sourceยง

fn add_assign(&mut self, rhs: &i32)

Performs the += operation. Read more
Sourceยง

impl AddAssign<&i64> for BigInt

Sourceยง

fn add_assign(&mut self, rhs: &i64)

Performs the += operation. Read more
Sourceยง

impl AddAssign<&i8> for BigInt

Sourceยง

fn add_assign(&mut self, rhs: &i8)

Performs the += operation. Read more
Sourceยง

impl AddAssign<&isize> for BigInt

Sourceยง

fn add_assign(&mut self, rhs: &isize)

Performs the += operation. Read more
Sourceยง

impl AddAssign<&u128> for BigInt

Sourceยง

fn add_assign(&mut self, rhs: &u128)

Performs the += operation. Read more
Sourceยง

impl AddAssign<&u16> for BigInt

Sourceยง

fn add_assign(&mut self, rhs: &u16)

Performs the += operation. Read more
Sourceยง

impl AddAssign<&u32> for BigInt

Sourceยง

fn add_assign(&mut self, rhs: &u32)

Performs the += operation. Read more
Sourceยง

impl AddAssign<&u64> for BigInt

Sourceยง

fn add_assign(&mut self, rhs: &u64)

Performs the += operation. Read more
Sourceยง

impl AddAssign<&u8> for BigInt

Sourceยง

fn add_assign(&mut self, rhs: &u8)

Performs the += operation. Read more
Sourceยง

impl AddAssign<&usize> for BigInt

Sourceยง

fn add_assign(&mut self, rhs: &usize)

Performs the += operation. Read more
Sourceยง

impl AddAssign<i128> for BigInt

Sourceยง

fn add_assign(&mut self, rhs: i128)

Performs the += operation. Read more
Sourceยง

impl AddAssign<i16> for BigInt

Sourceยง

fn add_assign(&mut self, rhs: i16)

Performs the += operation. Read more
Sourceยง

impl AddAssign<i32> for BigInt

Sourceยง

fn add_assign(&mut self, rhs: i32)

Performs the += operation. Read more
Sourceยง

impl AddAssign<i64> for BigInt

Sourceยง

fn add_assign(&mut self, rhs: i64)

Performs the += operation. Read more
Sourceยง

impl AddAssign<i8> for BigInt

Sourceยง

fn add_assign(&mut self, rhs: i8)

Performs the += operation. Read more
Sourceยง

impl AddAssign<isize> for BigInt

Sourceยง

fn add_assign(&mut self, rhs: isize)

Performs the += operation. Read more
Sourceยง

impl AddAssign<u128> for BigInt

Sourceยง

fn add_assign(&mut self, rhs: u128)

Performs the += operation. Read more
Sourceยง

impl AddAssign<u16> for BigInt

Sourceยง

fn add_assign(&mut self, rhs: u16)

Performs the += operation. Read more
Sourceยง

impl AddAssign<u32> for BigInt

Sourceยง

fn add_assign(&mut self, rhs: u32)

Performs the += operation. Read more
Sourceยง

impl AddAssign<u64> for BigInt

Sourceยง

fn add_assign(&mut self, rhs: u64)

Performs the += operation. Read more
Sourceยง

impl AddAssign<u8> for BigInt

Sourceยง

fn add_assign(&mut self, rhs: u8)

Performs the += operation. Read more
Sourceยง

impl AddAssign<usize> for BigInt

Sourceยง

fn add_assign(&mut self, rhs: usize)

Performs the += operation. Read more
Sourceยง

impl AddAssign for BigInt

Sourceยง

fn add_assign(&mut self, rhs: BigInt)

Performs the += operation. Read more
Sourceยง

impl Binary for BigInt

Sourceยง

fn fmt(&self, __derive_more_f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Sourceยง

impl BitAnd<&BigInt> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, rhs: &BigInt) -> <&BigInt as BitAnd<&BigInt>>::Output

Performs the & operation. Read more
Sourceยง

impl BitAnd<&BigInt> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, rhs: &BigInt) -> <BigInt as BitAnd<&BigInt>>::Output

Performs the & operation. Read more
Sourceยง

impl BitAnd<BigInt> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, rhs: BigInt) -> <&BigInt as BitAnd<BigInt>>::Output

Performs the & operation. Read more
Sourceยง

impl BitAnd for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, rhs: BigInt) -> <BigInt as BitAnd>::Output

Performs the & operation. Read more
Sourceยง

impl BitAndAssign<&BigInt> for BigInt

Sourceยง

fn bitand_assign(&mut self, rhs: &BigInt)

Performs the &= operation. Read more
Sourceยง

impl BitAndAssign for BigInt

Sourceยง

fn bitand_assign(&mut self, rhs: BigInt)

Performs the &= operation. Read more
Sourceยง

impl BitOr<&BigInt> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, rhs: &BigInt) -> <&BigInt as BitOr<&BigInt>>::Output

Performs the | operation. Read more
Sourceยง

impl BitOr<&BigInt> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, rhs: &BigInt) -> <BigInt as BitOr<&BigInt>>::Output

Performs the | operation. Read more
Sourceยง

impl BitOr<BigInt> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, rhs: BigInt) -> <&BigInt as BitOr<BigInt>>::Output

Performs the | operation. Read more
Sourceยง

impl BitOr for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, rhs: BigInt) -> <BigInt as BitOr>::Output

Performs the | operation. Read more
Sourceยง

impl BitOrAssign<&BigInt> for BigInt

Sourceยง

fn bitor_assign(&mut self, rhs: &BigInt)

Performs the |= operation. Read more
Sourceยง

impl BitOrAssign for BigInt

Sourceยง

fn bitor_assign(&mut self, rhs: BigInt)

Performs the |= operation. Read more
Sourceยง

impl BitXor<&BigInt> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, rhs: &BigInt) -> <&BigInt as BitXor<&BigInt>>::Output

Performs the ^ operation. Read more
Sourceยง

impl BitXor<&BigInt> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, rhs: &BigInt) -> <BigInt as BitXor<&BigInt>>::Output

Performs the ^ operation. Read more
Sourceยง

impl BitXor<BigInt> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, rhs: BigInt) -> <&BigInt as BitXor<BigInt>>::Output

Performs the ^ operation. Read more
Sourceยง

impl BitXor for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, rhs: BigInt) -> <BigInt as BitXor>::Output

Performs the ^ operation. Read more
Sourceยง

impl BitXorAssign<&BigInt> for BigInt

Sourceยง

fn bitxor_assign(&mut self, rhs: &BigInt)

Performs the ^= operation. Read more
Sourceยง

impl BitXorAssign for BigInt

Sourceยง

fn bitxor_assign(&mut self, rhs: BigInt)

Performs the ^= operation. Read more
Sourceยง

impl CheckedAdd for BigInt

Sourceยง

fn checked_add(&self, v: &BigInt) -> Option<BigInt>

Adds two numbers, checking for overflow. If overflow happens, None is returned.
Sourceยง

impl CheckedDiv for BigInt

Sourceยง

fn checked_div(&self, v: &BigInt) -> Option<BigInt>

Divides two numbers, checking for underflow, overflow and division by zero. If any of that happens, None is returned.
Sourceยง

impl CheckedMul for BigInt

Sourceยง

fn checked_mul(&self, v: &BigInt) -> Option<BigInt>

Multiplies two numbers, checking for underflow or overflow. If underflow or overflow happens, None is returned.
Sourceยง

impl CheckedSub for BigInt

Sourceยง

fn checked_sub(&self, v: &BigInt) -> Option<BigInt>

Subtracts two numbers, checking for underflow. If underflow happens, None is returned.
Sourceยง

impl Clone for BigInt

Sourceยง

fn clone(&self) -> BigInt

Returns a copy of the value. Read more
1.0.0 ยท Sourceยง

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Sourceยง

impl Debug for BigInt

Sourceยง

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Sourceยง

impl Default for BigInt

Sourceยง

fn default() -> BigInt

Returns the โ€œdefault valueโ€ for a type. Read more
Sourceยง

impl Display for BigInt

Sourceยง

fn fmt(&self, __derive_more_f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Sourceยง

impl Div<&BigInt> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &BigInt) -> <&BigInt as Div<&BigInt>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<&BigInt> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &BigInt) -> <BigInt as Div<&BigInt>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<&i128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &i128) -> <&BigInt as Div<&i128>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<&i128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &i128) -> <BigInt as Div<&i128>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<&i16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &i16) -> <&BigInt as Div<&i16>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<&i16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &i16) -> <BigInt as Div<&i16>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<&i32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &i32) -> <&BigInt as Div<&i32>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<&i32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &i32) -> <BigInt as Div<&i32>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<&i64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &i64) -> <&BigInt as Div<&i64>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<&i64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &i64) -> <BigInt as Div<&i64>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<&i8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &i8) -> <&BigInt as Div<&i8>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<&i8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &i8) -> <BigInt as Div<&i8>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<&isize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &isize) -> <&BigInt as Div<&isize>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<&isize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &isize) -> <BigInt as Div<&isize>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<&u128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &u128) -> <&BigInt as Div<&u128>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<&u128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &u128) -> <BigInt as Div<&u128>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<&u16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &u16) -> <&BigInt as Div<&u16>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<&u16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &u16) -> <BigInt as Div<&u16>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<&u32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &u32) -> <&BigInt as Div<&u32>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<&u32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &u32) -> <BigInt as Div<&u32>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<&u64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &u64) -> <&BigInt as Div<&u64>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<&u64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &u64) -> <BigInt as Div<&u64>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<&u8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &u8) -> <&BigInt as Div<&u8>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<&u8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &u8) -> <BigInt as Div<&u8>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<&usize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &usize) -> <&BigInt as Div<&usize>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<&usize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: &usize) -> <BigInt as Div<&usize>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<BigInt> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: BigInt) -> <&BigInt as Div<BigInt>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<i128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: i128) -> <&BigInt as Div<i128>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<i128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: i128) -> <BigInt as Div<i128>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<i16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: i16) -> <&BigInt as Div<i16>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<i16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: i16) -> <BigInt as Div<i16>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<i32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: i32) -> <&BigInt as Div<i32>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<i32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: i32) -> <BigInt as Div<i32>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<i64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: i64) -> <&BigInt as Div<i64>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<i64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: i64) -> <BigInt as Div<i64>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<i8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: i8) -> <&BigInt as Div<i8>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<i8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: i8) -> <BigInt as Div<i8>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<isize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: isize) -> <&BigInt as Div<isize>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<isize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: isize) -> <BigInt as Div<isize>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<u128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: u128) -> <&BigInt as Div<u128>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<u128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: u128) -> <BigInt as Div<u128>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<u16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: u16) -> <&BigInt as Div<u16>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<u16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: u16) -> <BigInt as Div<u16>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<u32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: u32) -> <&BigInt as Div<u32>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<u32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: u32) -> <BigInt as Div<u32>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<u64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: u64) -> <&BigInt as Div<u64>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<u64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: u64) -> <BigInt as Div<u64>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<u8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: u8) -> <&BigInt as Div<u8>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<u8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: u8) -> <BigInt as Div<u8>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<usize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: usize) -> <&BigInt as Div<usize>>::Output

Performs the / operation. Read more
Sourceยง

impl Div<usize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: usize) -> <BigInt as Div<usize>>::Output

Performs the / operation. Read more
Sourceยง

impl Div for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the / operator.
Sourceยง

fn div(self, rhs: BigInt) -> <BigInt as Div>::Output

Performs the / operation. Read more
Sourceยง

impl DivAssign<&BigInt> for BigInt

Sourceยง

fn div_assign(&mut self, rhs: &BigInt)

Performs the /= operation. Read more
Sourceยง

impl DivAssign<&i128> for BigInt

Sourceยง

fn div_assign(&mut self, rhs: &i128)

Performs the /= operation. Read more
Sourceยง

impl DivAssign<&i16> for BigInt

Sourceยง

fn div_assign(&mut self, rhs: &i16)

Performs the /= operation. Read more
Sourceยง

impl DivAssign<&i32> for BigInt

Sourceยง

fn div_assign(&mut self, rhs: &i32)

Performs the /= operation. Read more
Sourceยง

impl DivAssign<&i64> for BigInt

Sourceยง

fn div_assign(&mut self, rhs: &i64)

Performs the /= operation. Read more
Sourceยง

impl DivAssign<&i8> for BigInt

Sourceยง

fn div_assign(&mut self, rhs: &i8)

Performs the /= operation. Read more
Sourceยง

impl DivAssign<&isize> for BigInt

Sourceยง

fn div_assign(&mut self, rhs: &isize)

Performs the /= operation. Read more
Sourceยง

impl DivAssign<&u128> for BigInt

Sourceยง

fn div_assign(&mut self, rhs: &u128)

Performs the /= operation. Read more
Sourceยง

impl DivAssign<&u16> for BigInt

Sourceยง

fn div_assign(&mut self, rhs: &u16)

Performs the /= operation. Read more
Sourceยง

impl DivAssign<&u32> for BigInt

Sourceยง

fn div_assign(&mut self, rhs: &u32)

Performs the /= operation. Read more
Sourceยง

impl DivAssign<&u64> for BigInt

Sourceยง

fn div_assign(&mut self, rhs: &u64)

Performs the /= operation. Read more
Sourceยง

impl DivAssign<&u8> for BigInt

Sourceยง

fn div_assign(&mut self, rhs: &u8)

Performs the /= operation. Read more
Sourceยง

impl DivAssign<&usize> for BigInt

Sourceยง

fn div_assign(&mut self, rhs: &usize)

Performs the /= operation. Read more
Sourceยง

impl DivAssign<i128> for BigInt

Sourceยง

fn div_assign(&mut self, rhs: i128)

Performs the /= operation. Read more
Sourceยง

impl DivAssign<i16> for BigInt

Sourceยง

fn div_assign(&mut self, rhs: i16)

Performs the /= operation. Read more
Sourceยง

impl DivAssign<i32> for BigInt

Sourceยง

fn div_assign(&mut self, rhs: i32)

Performs the /= operation. Read more
Sourceยง

impl DivAssign<i64> for BigInt

Sourceยง

fn div_assign(&mut self, rhs: i64)

Performs the /= operation. Read more
Sourceยง

impl DivAssign<i8> for BigInt

Sourceยง

fn div_assign(&mut self, rhs: i8)

Performs the /= operation. Read more
Sourceยง

impl DivAssign<isize> for BigInt

Sourceยง

fn div_assign(&mut self, rhs: isize)

Performs the /= operation. Read more
Sourceยง

impl DivAssign<u128> for BigInt

Sourceยง

fn div_assign(&mut self, rhs: u128)

Performs the /= operation. Read more
Sourceยง

impl DivAssign<u16> for BigInt

Sourceยง

fn div_assign(&mut self, rhs: u16)

Performs the /= operation. Read more
Sourceยง

impl DivAssign<u32> for BigInt

Sourceยง

fn div_assign(&mut self, rhs: u32)

Performs the /= operation. Read more
Sourceยง

impl DivAssign<u64> for BigInt

Sourceยง

fn div_assign(&mut self, rhs: u64)

Performs the /= operation. Read more
Sourceยง

impl DivAssign<u8> for BigInt

Sourceยง

fn div_assign(&mut self, rhs: u8)

Performs the /= operation. Read more
Sourceยง

impl DivAssign<usize> for BigInt

Sourceยง

fn div_assign(&mut self, rhs: usize)

Performs the /= operation. Read more
Sourceยง

impl DivAssign for BigInt

Sourceยง

fn div_assign(&mut self, rhs: BigInt)

Performs the /= operation. Read more
Sourceยง

impl From<BigInt> for Constant

Sourceยง

fn from(i: BigInt) -> Constant

Converts to this type from the input type.
Sourceยง

impl From<BigUint> for BigInt

Sourceยง

fn from(value: BigUint) -> BigInt

Converts to this type from the input type.
Sourceยง

impl From<Integer> for BigInt

Sourceยง

fn from(value: Integer) -> BigInt

Converts to this type from the input type.
Sourceยง

impl From<i128> for BigInt

Sourceยง

fn from(value: i128) -> BigInt

Converts to this type from the input type.
Sourceยง

impl From<i16> for BigInt

Sourceยง

fn from(value: i16) -> BigInt

Converts to this type from the input type.
Sourceยง

impl From<i32> for BigInt

Sourceยง

fn from(value: i32) -> BigInt

Converts to this type from the input type.
Sourceยง

impl From<i64> for BigInt

Sourceยง

fn from(value: i64) -> BigInt

Converts to this type from the input type.
Sourceยง

impl From<i8> for BigInt

Sourceยง

fn from(value: i8) -> BigInt

Converts to this type from the input type.
Sourceยง

impl From<isize> for BigInt

Sourceยง

fn from(value: isize) -> BigInt

Converts to this type from the input type.
Sourceยง

impl From<u128> for BigInt

Sourceยง

fn from(value: u128) -> BigInt

Converts to this type from the input type.
Sourceยง

impl From<u16> for BigInt

Sourceยง

fn from(value: u16) -> BigInt

Converts to this type from the input type.
Sourceยง

impl From<u32> for BigInt

Sourceยง

fn from(value: u32) -> BigInt

Converts to this type from the input type.
Sourceยง

impl From<u64> for BigInt

Sourceยง

fn from(value: u64) -> BigInt

Converts to this type from the input type.
Sourceยง

impl From<u8> for BigInt

Sourceยง

fn from(value: u8) -> BigInt

Converts to this type from the input type.
Sourceยง

impl From<usize> for BigInt

Sourceยง

fn from(value: usize) -> BigInt

Converts to this type from the input type.
Sourceยง

impl FromPrimitive for BigInt

Sourceยง

fn from_i8(n: i8) -> Option<BigInt>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Sourceยง

fn from_i16(n: i16) -> Option<BigInt>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Sourceยง

fn from_i32(n: i32) -> Option<BigInt>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Sourceยง

fn from_i64(n: i64) -> Option<BigInt>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Sourceยง

fn from_isize(n: isize) -> Option<BigInt>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Sourceยง

fn from_i128(n: i128) -> Option<BigInt>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
Sourceยง

fn from_u8(n: u8) -> Option<BigInt>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Sourceยง

fn from_u16(n: u16) -> Option<BigInt>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Sourceยง

fn from_u32(n: u32) -> Option<BigInt>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Sourceยง

fn from_u64(n: u64) -> Option<BigInt>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Sourceยง

fn from_usize(n: usize) -> Option<BigInt>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Sourceยง

fn from_u128(n: u128) -> Option<BigInt>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
Sourceยง

fn from_f32(n: f32) -> Option<BigInt>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Sourceยง

fn from_f64(n: f64) -> Option<BigInt>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
Sourceยง

impl FromStr for BigInt

Sourceยง

type Err = ParseBigIntError

The associated error which can be returned from parsing.
Sourceยง

fn from_str(s: &str) -> Result<BigInt, <BigInt as FromStr>::Err>

Parses a string s to return a value of this type. Read more
Sourceยง

impl Hash for BigInt

Sourceยง

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 ยท Sourceยง

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Sourceยง

impl Integer for BigInt

Sourceยง

fn div_floor(&self, other: &BigInt) -> BigInt

Floored integer division. Read more
Sourceยง

fn mod_floor(&self, other: &BigInt) -> BigInt

Floored integer modulo, satisfying: Read more
Sourceยง

fn gcd(&self, other: &BigInt) -> BigInt

Greatest Common Divisor (GCD). Read more
Sourceยง

fn lcm(&self, other: &BigInt) -> BigInt

Lowest Common Multiple (LCM). Read more
Sourceยง

fn divides(&self, other: &BigInt) -> bool

๐Ÿ‘ŽDeprecated: Please use is_multiple_of instead
Deprecated, use is_multiple_of instead.
Sourceยง

fn is_multiple_of(&self, other: &BigInt) -> bool

Returns true if self is a multiple of other. Read more
Sourceยง

fn is_even(&self) -> bool

Returns true if the number is even. Read more
Sourceยง

fn is_odd(&self) -> bool

Returns true if the number is odd. Read more
Sourceยง

fn div_rem(&self, other: &BigInt) -> (BigInt, BigInt)

Simultaneous truncated integer division and modulus. Returns (quotient, remainder). Read more
Sourceยง

fn div_ceil(&self, other: &Self) -> Self

Ceiled integer division. Read more
Sourceยง

fn gcd_lcm(&self, other: &Self) -> (Self, Self)

Greatest Common Divisor (GCD) and Lowest Common Multiple (LCM) together. Read more
Sourceยง

fn extended_gcd(&self, other: &Self) -> ExtendedGcd<Self>
where Self: Clone,

Greatest common divisor and Bรฉzout coefficients. Read more
Sourceยง

fn extended_gcd_lcm(&self, other: &Self) -> (ExtendedGcd<Self>, Self)
where Self: Clone + Signed,

Greatest common divisor, least common multiple, and Bรฉzout coefficients.
Sourceยง

fn div_mod_floor(&self, other: &Self) -> (Self, Self)

Simultaneous floored integer division and modulus. Returns (quotient, remainder). Read more
Sourceยง

fn next_multiple_of(&self, other: &Self) -> Self
where Self: Clone,

Rounds up to nearest multiple of argument. Read more
Sourceยง

fn prev_multiple_of(&self, other: &Self) -> Self
where Self: Clone,

Rounds down to nearest multiple of argument. Read more
Sourceยง

fn dec(&mut self)
where Self: Clone,

Decrements self by one. Read more
Sourceยง

fn inc(&mut self)
where Self: Clone,

Increments self by one. Read more
Sourceยง

impl LowerHex for BigInt

Sourceยง

fn fmt(&self, __derive_more_f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Sourceยง

impl Mul<&BigInt> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &BigInt) -> <&BigInt as Mul<&BigInt>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<&BigInt> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &BigInt) -> <BigInt as Mul<&BigInt>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<&i128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &i128) -> <&BigInt as Mul<&i128>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<&i128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &i128) -> <BigInt as Mul<&i128>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<&i16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &i16) -> <&BigInt as Mul<&i16>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<&i16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &i16) -> <BigInt as Mul<&i16>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<&i32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &i32) -> <&BigInt as Mul<&i32>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<&i32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &i32) -> <BigInt as Mul<&i32>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<&i64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &i64) -> <&BigInt as Mul<&i64>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<&i64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &i64) -> <BigInt as Mul<&i64>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<&i8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &i8) -> <&BigInt as Mul<&i8>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<&i8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &i8) -> <BigInt as Mul<&i8>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<&isize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &isize) -> <&BigInt as Mul<&isize>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<&isize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &isize) -> <BigInt as Mul<&isize>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<&u128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &u128) -> <&BigInt as Mul<&u128>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<&u128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &u128) -> <BigInt as Mul<&u128>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<&u16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &u16) -> <&BigInt as Mul<&u16>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<&u16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &u16) -> <BigInt as Mul<&u16>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<&u32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &u32) -> <&BigInt as Mul<&u32>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<&u32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &u32) -> <BigInt as Mul<&u32>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<&u64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &u64) -> <&BigInt as Mul<&u64>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<&u64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &u64) -> <BigInt as Mul<&u64>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<&u8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &u8) -> <&BigInt as Mul<&u8>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<&u8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &u8) -> <BigInt as Mul<&u8>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<&usize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &usize) -> <&BigInt as Mul<&usize>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<&usize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: &usize) -> <BigInt as Mul<&usize>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<BigInt> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: BigInt) -> <&BigInt as Mul<BigInt>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<i128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: i128) -> <&BigInt as Mul<i128>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<i128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: i128) -> <BigInt as Mul<i128>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<i16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: i16) -> <&BigInt as Mul<i16>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<i16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: i16) -> <BigInt as Mul<i16>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<i32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: i32) -> <&BigInt as Mul<i32>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<i32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: i32) -> <BigInt as Mul<i32>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<i64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: i64) -> <&BigInt as Mul<i64>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<i64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: i64) -> <BigInt as Mul<i64>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<i8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: i8) -> <&BigInt as Mul<i8>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<i8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: i8) -> <BigInt as Mul<i8>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<isize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: isize) -> <&BigInt as Mul<isize>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<isize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: isize) -> <BigInt as Mul<isize>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<u128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: u128) -> <&BigInt as Mul<u128>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<u128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: u128) -> <BigInt as Mul<u128>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<u16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: u16) -> <&BigInt as Mul<u16>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<u16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: u16) -> <BigInt as Mul<u16>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<u32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: u32) -> <&BigInt as Mul<u32>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<u32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: u32) -> <BigInt as Mul<u32>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<u64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: u64) -> <&BigInt as Mul<u64>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<u64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: u64) -> <BigInt as Mul<u64>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<u8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: u8) -> <&BigInt as Mul<u8>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<u8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: u8) -> <BigInt as Mul<u8>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<usize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: usize) -> <&BigInt as Mul<usize>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul<usize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: usize) -> <BigInt as Mul<usize>>::Output

Performs the * operation. Read more
Sourceยง

impl Mul for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the * operator.
Sourceยง

fn mul(self, rhs: BigInt) -> <BigInt as Mul>::Output

Performs the * operation. Read more
Sourceยง

impl MulAssign<&BigInt> for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: &BigInt)

Performs the *= operation. Read more
Sourceยง

impl MulAssign<&i128> for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: &i128)

Performs the *= operation. Read more
Sourceยง

impl MulAssign<&i16> for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: &i16)

Performs the *= operation. Read more
Sourceยง

impl MulAssign<&i32> for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: &i32)

Performs the *= operation. Read more
Sourceยง

impl MulAssign<&i64> for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: &i64)

Performs the *= operation. Read more
Sourceยง

impl MulAssign<&i8> for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: &i8)

Performs the *= operation. Read more
Sourceยง

impl MulAssign<&isize> for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: &isize)

Performs the *= operation. Read more
Sourceยง

impl MulAssign<&u128> for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: &u128)

Performs the *= operation. Read more
Sourceยง

impl MulAssign<&u16> for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: &u16)

Performs the *= operation. Read more
Sourceยง

impl MulAssign<&u32> for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: &u32)

Performs the *= operation. Read more
Sourceยง

impl MulAssign<&u64> for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: &u64)

Performs the *= operation. Read more
Sourceยง

impl MulAssign<&u8> for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: &u8)

Performs the *= operation. Read more
Sourceยง

impl MulAssign<&usize> for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: &usize)

Performs the *= operation. Read more
Sourceยง

impl MulAssign<i128> for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: i128)

Performs the *= operation. Read more
Sourceยง

impl MulAssign<i16> for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: i16)

Performs the *= operation. Read more
Sourceยง

impl MulAssign<i32> for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: i32)

Performs the *= operation. Read more
Sourceยง

impl MulAssign<i64> for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: i64)

Performs the *= operation. Read more
Sourceยง

impl MulAssign<i8> for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: i8)

Performs the *= operation. Read more
Sourceยง

impl MulAssign<isize> for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: isize)

Performs the *= operation. Read more
Sourceยง

impl MulAssign<u128> for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: u128)

Performs the *= operation. Read more
Sourceยง

impl MulAssign<u16> for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: u16)

Performs the *= operation. Read more
Sourceยง

impl MulAssign<u32> for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: u32)

Performs the *= operation. Read more
Sourceยง

impl MulAssign<u64> for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: u64)

Performs the *= operation. Read more
Sourceยง

impl MulAssign<u8> for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: u8)

Performs the *= operation. Read more
Sourceยง

impl MulAssign<usize> for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: usize)

Performs the *= operation. Read more
Sourceยง

impl MulAssign for BigInt

Sourceยง

fn mul_assign(&mut self, rhs: BigInt)

Performs the *= operation. Read more
Sourceยง

impl Neg for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> <&BigInt as Neg>::Output

Performs the unary - operation. Read more
Sourceยง

impl Neg for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> <BigInt as Neg>::Output

Performs the unary - operation. Read more
Sourceยง

impl Not for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> <&BigInt as Not>::Output

Performs the unary ! operation. Read more
Sourceยง

impl Not for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> <BigInt as Not>::Output

Performs the unary ! operation. Read more
Sourceยง

impl Num for BigInt

Sourceยง

type FromStrRadixErr = ParseBigIntError

Sourceยง

fn from_str_radix( s: &str, radix: u32, ) -> Result<BigInt, <BigInt as Num>::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
Sourceยง

impl Octal for BigInt

Sourceยง

fn fmt(&self, __derive_more_f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Sourceยง

impl One for BigInt

Sourceยง

fn one() -> BigInt

Returns the multiplicative identity element of Self, 1. Read more
Sourceยง

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
Sourceยง

fn is_one(&self) -> bool
where Self: PartialEq,

Returns true if self is equal to the multiplicative identity. Read more
Sourceยง

impl Ord for BigInt

Sourceยง

fn cmp(&self, other: &BigInt) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 ยท Sourceยง

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 ยท Sourceยง

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 ยท Sourceยง

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Sourceยง

impl PartialEq for BigInt

Sourceยง

fn eq(&self, other: &BigInt) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 ยท Sourceยง

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Sourceยง

impl PartialOrd for BigInt

Sourceยง

fn partial_cmp(&self, other: &BigInt) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 ยท Sourceยง

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 ยท Sourceยง

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 ยท Sourceยง

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 ยท Sourceยง

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Sourceยง

impl Pow<&BigUint> for &BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &BigUint) -> <&BigInt as Pow<&BigUint>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<&BigUint> for BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &BigUint) -> <BigInt as Pow<&BigUint>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<&u128> for &BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &u128) -> <&BigInt as Pow<&u128>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<&u128> for BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &u128) -> <BigInt as Pow<&u128>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<&u16> for &BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &u16) -> <&BigInt as Pow<&u16>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<&u16> for BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &u16) -> <BigInt as Pow<&u16>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<&u32> for &BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &u32) -> <&BigInt as Pow<&u32>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<&u32> for BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &u32) -> <BigInt as Pow<&u32>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<&u64> for &BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &u64) -> <&BigInt as Pow<&u64>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<&u64> for BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &u64) -> <BigInt as Pow<&u64>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<&u8> for &BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &u8) -> <&BigInt as Pow<&u8>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<&u8> for BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &u8) -> <BigInt as Pow<&u8>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<&usize> for &BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &usize) -> <&BigInt as Pow<&usize>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<&usize> for BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &usize) -> <BigInt as Pow<&usize>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<BigUint> for &BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: BigUint) -> <&BigInt as Pow<BigUint>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<BigUint> for BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: BigUint) -> <BigInt as Pow<BigUint>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<u128> for &BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u128) -> <&BigInt as Pow<u128>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<u128> for BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u128) -> <BigInt as Pow<u128>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<u16> for &BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u16) -> <&BigInt as Pow<u16>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<u16> for BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u16) -> <BigInt as Pow<u16>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<u32> for &BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u32) -> <&BigInt as Pow<u32>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<u32> for BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u32) -> <BigInt as Pow<u32>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<u64> for &BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u64) -> <&BigInt as Pow<u64>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<u64> for BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u64) -> <BigInt as Pow<u64>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<u8> for &BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> <&BigInt as Pow<u8>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<u8> for BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> <BigInt as Pow<u8>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<usize> for &BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> <&BigInt as Pow<usize>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl Pow<usize> for BigInt

Sourceยง

type Output = BigInt

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> <BigInt as Pow<usize>>::Output

Returns self to the power rhs. Read more
Sourceยง

impl<T> Product<T> for BigInt
where BigInt: Mul<T, Output = BigInt>,

Sourceยง

fn product<I>(iter: I) -> BigInt
where I: Iterator<Item = T>,

Takes an iterator and generates Self from the elements by multiplying the items.
Sourceยง

impl Rem<&BigInt> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &BigInt) -> <&BigInt as Rem<&BigInt>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<&BigInt> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &BigInt) -> <BigInt as Rem<&BigInt>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<&i128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &i128) -> <&BigInt as Rem<&i128>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<&i128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &i128) -> <BigInt as Rem<&i128>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<&i16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &i16) -> <&BigInt as Rem<&i16>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<&i16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &i16) -> <BigInt as Rem<&i16>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<&i32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &i32) -> <&BigInt as Rem<&i32>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<&i32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &i32) -> <BigInt as Rem<&i32>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<&i64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &i64) -> <&BigInt as Rem<&i64>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<&i64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &i64) -> <BigInt as Rem<&i64>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<&i8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &i8) -> <&BigInt as Rem<&i8>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<&i8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &i8) -> <BigInt as Rem<&i8>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<&isize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &isize) -> <&BigInt as Rem<&isize>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<&isize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &isize) -> <BigInt as Rem<&isize>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<&u128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &u128) -> <&BigInt as Rem<&u128>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<&u128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &u128) -> <BigInt as Rem<&u128>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<&u16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &u16) -> <&BigInt as Rem<&u16>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<&u16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &u16) -> <BigInt as Rem<&u16>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<&u32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &u32) -> <&BigInt as Rem<&u32>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<&u32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &u32) -> <BigInt as Rem<&u32>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<&u64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &u64) -> <&BigInt as Rem<&u64>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<&u64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &u64) -> <BigInt as Rem<&u64>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<&u8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &u8) -> <&BigInt as Rem<&u8>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<&u8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &u8) -> <BigInt as Rem<&u8>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<&usize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &usize) -> <&BigInt as Rem<&usize>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<&usize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: &usize) -> <BigInt as Rem<&usize>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<BigInt> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: BigInt) -> <&BigInt as Rem<BigInt>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<i128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: i128) -> <&BigInt as Rem<i128>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<i128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: i128) -> <BigInt as Rem<i128>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<i16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: i16) -> <&BigInt as Rem<i16>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<i16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: i16) -> <BigInt as Rem<i16>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<i32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: i32) -> <&BigInt as Rem<i32>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<i32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: i32) -> <BigInt as Rem<i32>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<i64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: i64) -> <&BigInt as Rem<i64>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<i64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: i64) -> <BigInt as Rem<i64>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<i8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: i8) -> <&BigInt as Rem<i8>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<i8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: i8) -> <BigInt as Rem<i8>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<isize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: isize) -> <&BigInt as Rem<isize>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<isize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: isize) -> <BigInt as Rem<isize>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<u128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: u128) -> <&BigInt as Rem<u128>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<u128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: u128) -> <BigInt as Rem<u128>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<u16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: u16) -> <&BigInt as Rem<u16>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<u16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: u16) -> <BigInt as Rem<u16>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<u32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: u32) -> <&BigInt as Rem<u32>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<u32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: u32) -> <BigInt as Rem<u32>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<u64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: u64) -> <&BigInt as Rem<u64>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<u64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: u64) -> <BigInt as Rem<u64>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<u8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: u8) -> <&BigInt as Rem<u8>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<u8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: u8) -> <BigInt as Rem<u8>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<usize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: usize) -> <&BigInt as Rem<usize>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem<usize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: usize) -> <BigInt as Rem<usize>>::Output

Performs the % operation. Read more
Sourceยง

impl Rem for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the % operator.
Sourceยง

fn rem(self, rhs: BigInt) -> <BigInt as Rem>::Output

Performs the % operation. Read more
Sourceยง

impl RemAssign<&BigInt> for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: &BigInt)

Performs the %= operation. Read more
Sourceยง

impl RemAssign<&i128> for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: &i128)

Performs the %= operation. Read more
Sourceยง

impl RemAssign<&i16> for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: &i16)

Performs the %= operation. Read more
Sourceยง

impl RemAssign<&i32> for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: &i32)

Performs the %= operation. Read more
Sourceยง

impl RemAssign<&i64> for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: &i64)

Performs the %= operation. Read more
Sourceยง

impl RemAssign<&i8> for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: &i8)

Performs the %= operation. Read more
Sourceยง

impl RemAssign<&isize> for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: &isize)

Performs the %= operation. Read more
Sourceยง

impl RemAssign<&u128> for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: &u128)

Performs the %= operation. Read more
Sourceยง

impl RemAssign<&u16> for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: &u16)

Performs the %= operation. Read more
Sourceยง

impl RemAssign<&u32> for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: &u32)

Performs the %= operation. Read more
Sourceยง

impl RemAssign<&u64> for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: &u64)

Performs the %= operation. Read more
Sourceยง

impl RemAssign<&u8> for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: &u8)

Performs the %= operation. Read more
Sourceยง

impl RemAssign<&usize> for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: &usize)

Performs the %= operation. Read more
Sourceยง

impl RemAssign<i128> for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: i128)

Performs the %= operation. Read more
Sourceยง

impl RemAssign<i16> for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: i16)

Performs the %= operation. Read more
Sourceยง

impl RemAssign<i32> for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: i32)

Performs the %= operation. Read more
Sourceยง

impl RemAssign<i64> for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: i64)

Performs the %= operation. Read more
Sourceยง

impl RemAssign<i8> for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: i8)

Performs the %= operation. Read more
Sourceยง

impl RemAssign<isize> for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: isize)

Performs the %= operation. Read more
Sourceยง

impl RemAssign<u128> for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: u128)

Performs the %= operation. Read more
Sourceยง

impl RemAssign<u16> for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: u16)

Performs the %= operation. Read more
Sourceยง

impl RemAssign<u32> for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: u32)

Performs the %= operation. Read more
Sourceยง

impl RemAssign<u64> for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: u64)

Performs the %= operation. Read more
Sourceยง

impl RemAssign<u8> for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: u8)

Performs the %= operation. Read more
Sourceยง

impl RemAssign<usize> for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: usize)

Performs the %= operation. Read more
Sourceยง

impl RemAssign for BigInt

Sourceยง

fn rem_assign(&mut self, rhs: BigInt)

Performs the %= operation. Read more
Sourceยง

impl Roots for BigInt

Sourceยง

fn nth_root(&self, n: u32) -> BigInt

Returns the truncated principal nth root of an integer โ€“ if x >= 0 { โŒŠโฟโˆšxโŒ‹ } else { โŒˆโฟโˆšxโŒ‰ } Read more
Sourceยง

fn sqrt(&self) -> Self

Returns the truncated principal square root of an integer โ€“ โŒŠโˆšxโŒ‹ Read more
Sourceยง

fn cbrt(&self) -> Self

Returns the truncated principal cube root of an integer โ€“ if x >= 0 { โŒŠโˆ›xโŒ‹ } else { โŒˆโˆ›xโŒ‰ } Read more
Sourceยง

impl SequenceIndexOp for BigInt

Sourceยง

impl Shl<&i128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: &i128) -> <&BigInt as Shl<&i128>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<&i128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: &i128) -> <BigInt as Shl<&i128>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<&i16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: &i16) -> <&BigInt as Shl<&i16>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<&i16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: &i16) -> <BigInt as Shl<&i16>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<&i32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: &i32) -> <&BigInt as Shl<&i32>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<&i32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: &i32) -> <BigInt as Shl<&i32>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<&i64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: &i64) -> <&BigInt as Shl<&i64>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<&i64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: &i64) -> <BigInt as Shl<&i64>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<&i8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: &i8) -> <&BigInt as Shl<&i8>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<&i8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: &i8) -> <BigInt as Shl<&i8>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<&isize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: &isize) -> <&BigInt as Shl<&isize>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<&isize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: &isize) -> <BigInt as Shl<&isize>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<&u128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: &u128) -> <&BigInt as Shl<&u128>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<&u128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: &u128) -> <BigInt as Shl<&u128>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<&u16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: &u16) -> <&BigInt as Shl<&u16>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<&u16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: &u16) -> <BigInt as Shl<&u16>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<&u32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: &u32) -> <&BigInt as Shl<&u32>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<&u32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: &u32) -> <BigInt as Shl<&u32>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<&u64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: &u64) -> <&BigInt as Shl<&u64>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<&u64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: &u64) -> <BigInt as Shl<&u64>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<&u8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: &u8) -> <&BigInt as Shl<&u8>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<&u8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: &u8) -> <BigInt as Shl<&u8>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<&usize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: &usize) -> <&BigInt as Shl<&usize>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<&usize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: &usize) -> <BigInt as Shl<&usize>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<i128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: i128) -> <&BigInt as Shl<i128>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<i128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: i128) -> <BigInt as Shl<i128>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<i16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: i16) -> <&BigInt as Shl<i16>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<i16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: i16) -> <BigInt as Shl<i16>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<i32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: i32) -> <&BigInt as Shl<i32>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<i32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: i32) -> <BigInt as Shl<i32>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<i64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: i64) -> <&BigInt as Shl<i64>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<i64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: i64) -> <BigInt as Shl<i64>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<i8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: i8) -> <&BigInt as Shl<i8>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<i8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: i8) -> <BigInt as Shl<i8>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<isize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: isize) -> <&BigInt as Shl<isize>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<isize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: isize) -> <BigInt as Shl<isize>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<u128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: u128) -> <&BigInt as Shl<u128>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<u128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: u128) -> <BigInt as Shl<u128>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<u16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: u16) -> <&BigInt as Shl<u16>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<u16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: u16) -> <BigInt as Shl<u16>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<u32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: u32) -> <&BigInt as Shl<u32>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<u32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: u32) -> <BigInt as Shl<u32>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<u64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: u64) -> <&BigInt as Shl<u64>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<u64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: u64) -> <BigInt as Shl<u64>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<u8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: u8) -> <&BigInt as Shl<u8>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<u8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: u8) -> <BigInt as Shl<u8>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<usize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: usize) -> <&BigInt as Shl<usize>>::Output

Performs the << operation. Read more
Sourceยง

impl Shl<usize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the << operator.
Sourceยง

fn shl(self, rhs: usize) -> <BigInt as Shl<usize>>::Output

Performs the << operation. Read more
Sourceยง

impl ShlAssign<&i128> for BigInt

Sourceยง

fn shl_assign(&mut self, rhs: &i128)

Performs the <<= operation. Read more
Sourceยง

impl ShlAssign<&i16> for BigInt

Sourceยง

fn shl_assign(&mut self, rhs: &i16)

Performs the <<= operation. Read more
Sourceยง

impl ShlAssign<&i32> for BigInt

Sourceยง

fn shl_assign(&mut self, rhs: &i32)

Performs the <<= operation. Read more
Sourceยง

impl ShlAssign<&i64> for BigInt

Sourceยง

fn shl_assign(&mut self, rhs: &i64)

Performs the <<= operation. Read more
Sourceยง

impl ShlAssign<&i8> for BigInt

Sourceยง

fn shl_assign(&mut self, rhs: &i8)

Performs the <<= operation. Read more
Sourceยง

impl ShlAssign<&isize> for BigInt

Sourceยง

fn shl_assign(&mut self, rhs: &isize)

Performs the <<= operation. Read more
Sourceยง

impl ShlAssign<&u128> for BigInt

Sourceยง

fn shl_assign(&mut self, rhs: &u128)

Performs the <<= operation. Read more
Sourceยง

impl ShlAssign<&u16> for BigInt

Sourceยง

fn shl_assign(&mut self, rhs: &u16)

Performs the <<= operation. Read more
Sourceยง

impl ShlAssign<&u32> for BigInt

Sourceยง

fn shl_assign(&mut self, rhs: &u32)

Performs the <<= operation. Read more
Sourceยง

impl ShlAssign<&u64> for BigInt

Sourceยง

fn shl_assign(&mut self, rhs: &u64)

Performs the <<= operation. Read more
Sourceยง

impl ShlAssign<&u8> for BigInt

Sourceยง

fn shl_assign(&mut self, rhs: &u8)

Performs the <<= operation. Read more
Sourceยง

impl ShlAssign<&usize> for BigInt

Sourceยง

fn shl_assign(&mut self, rhs: &usize)

Performs the <<= operation. Read more
Sourceยง

impl ShlAssign<i128> for BigInt

Sourceยง

fn shl_assign(&mut self, rhs: i128)

Performs the <<= operation. Read more
Sourceยง

impl ShlAssign<i16> for BigInt

Sourceยง

fn shl_assign(&mut self, rhs: i16)

Performs the <<= operation. Read more
Sourceยง

impl ShlAssign<i32> for BigInt

Sourceยง

fn shl_assign(&mut self, rhs: i32)

Performs the <<= operation. Read more
Sourceยง

impl ShlAssign<i64> for BigInt

Sourceยง

fn shl_assign(&mut self, rhs: i64)

Performs the <<= operation. Read more
Sourceยง

impl ShlAssign<i8> for BigInt

Sourceยง

fn shl_assign(&mut self, rhs: i8)

Performs the <<= operation. Read more
Sourceยง

impl ShlAssign<isize> for BigInt

Sourceยง

fn shl_assign(&mut self, rhs: isize)

Performs the <<= operation. Read more
Sourceยง

impl ShlAssign<u128> for BigInt

Sourceยง

fn shl_assign(&mut self, rhs: u128)

Performs the <<= operation. Read more
Sourceยง

impl ShlAssign<u16> for BigInt

Sourceยง

fn shl_assign(&mut self, rhs: u16)

Performs the <<= operation. Read more
Sourceยง

impl ShlAssign<u32> for BigInt

Sourceยง

fn shl_assign(&mut self, rhs: u32)

Performs the <<= operation. Read more
Sourceยง

impl ShlAssign<u64> for BigInt

Sourceยง

fn shl_assign(&mut self, rhs: u64)

Performs the <<= operation. Read more
Sourceยง

impl ShlAssign<u8> for BigInt

Sourceยง

fn shl_assign(&mut self, rhs: u8)

Performs the <<= operation. Read more
Sourceยง

impl ShlAssign<usize> for BigInt

Sourceยง

fn shl_assign(&mut self, rhs: usize)

Performs the <<= operation. Read more
Sourceยง

impl Shr<&i128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: &i128) -> <&BigInt as Shr<&i128>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<&i128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: &i128) -> <BigInt as Shr<&i128>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<&i16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: &i16) -> <&BigInt as Shr<&i16>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<&i16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: &i16) -> <BigInt as Shr<&i16>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<&i32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: &i32) -> <&BigInt as Shr<&i32>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<&i32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: &i32) -> <BigInt as Shr<&i32>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<&i64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: &i64) -> <&BigInt as Shr<&i64>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<&i64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: &i64) -> <BigInt as Shr<&i64>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<&i8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: &i8) -> <&BigInt as Shr<&i8>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<&i8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: &i8) -> <BigInt as Shr<&i8>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<&isize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: &isize) -> <&BigInt as Shr<&isize>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<&isize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: &isize) -> <BigInt as Shr<&isize>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<&u128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: &u128) -> <&BigInt as Shr<&u128>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<&u128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: &u128) -> <BigInt as Shr<&u128>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<&u16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: &u16) -> <&BigInt as Shr<&u16>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<&u16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: &u16) -> <BigInt as Shr<&u16>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<&u32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: &u32) -> <&BigInt as Shr<&u32>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<&u32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: &u32) -> <BigInt as Shr<&u32>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<&u64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: &u64) -> <&BigInt as Shr<&u64>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<&u64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: &u64) -> <BigInt as Shr<&u64>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<&u8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: &u8) -> <&BigInt as Shr<&u8>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<&u8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: &u8) -> <BigInt as Shr<&u8>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<&usize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: &usize) -> <&BigInt as Shr<&usize>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<&usize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: &usize) -> <BigInt as Shr<&usize>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<i128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: i128) -> <&BigInt as Shr<i128>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<i128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: i128) -> <BigInt as Shr<i128>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<i16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: i16) -> <&BigInt as Shr<i16>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<i16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: i16) -> <BigInt as Shr<i16>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<i32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: i32) -> <&BigInt as Shr<i32>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<i32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: i32) -> <BigInt as Shr<i32>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<i64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: i64) -> <&BigInt as Shr<i64>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<i64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: i64) -> <BigInt as Shr<i64>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<i8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: i8) -> <&BigInt as Shr<i8>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<i8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: i8) -> <BigInt as Shr<i8>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<isize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: isize) -> <&BigInt as Shr<isize>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<isize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: isize) -> <BigInt as Shr<isize>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<u128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: u128) -> <&BigInt as Shr<u128>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<u128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: u128) -> <BigInt as Shr<u128>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<u16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: u16) -> <&BigInt as Shr<u16>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<u16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: u16) -> <BigInt as Shr<u16>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<u32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: u32) -> <&BigInt as Shr<u32>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<u32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: u32) -> <BigInt as Shr<u32>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<u64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: u64) -> <&BigInt as Shr<u64>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<u64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: u64) -> <BigInt as Shr<u64>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<u8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: u8) -> <&BigInt as Shr<u8>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<u8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: u8) -> <BigInt as Shr<u8>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<usize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: usize) -> <&BigInt as Shr<usize>>::Output

Performs the >> operation. Read more
Sourceยง

impl Shr<usize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, rhs: usize) -> <BigInt as Shr<usize>>::Output

Performs the >> operation. Read more
Sourceยง

impl ShrAssign<&i128> for BigInt

Sourceยง

fn shr_assign(&mut self, rhs: &i128)

Performs the >>= operation. Read more
Sourceยง

impl ShrAssign<&i16> for BigInt

Sourceยง

fn shr_assign(&mut self, rhs: &i16)

Performs the >>= operation. Read more
Sourceยง

impl ShrAssign<&i32> for BigInt

Sourceยง

fn shr_assign(&mut self, rhs: &i32)

Performs the >>= operation. Read more
Sourceยง

impl ShrAssign<&i64> for BigInt

Sourceยง

fn shr_assign(&mut self, rhs: &i64)

Performs the >>= operation. Read more
Sourceยง

impl ShrAssign<&i8> for BigInt

Sourceยง

fn shr_assign(&mut self, rhs: &i8)

Performs the >>= operation. Read more
Sourceยง

impl ShrAssign<&isize> for BigInt

Sourceยง

fn shr_assign(&mut self, rhs: &isize)

Performs the >>= operation. Read more
Sourceยง

impl ShrAssign<&u128> for BigInt

Sourceยง

fn shr_assign(&mut self, rhs: &u128)

Performs the >>= operation. Read more
Sourceยง

impl ShrAssign<&u16> for BigInt

Sourceยง

fn shr_assign(&mut self, rhs: &u16)

Performs the >>= operation. Read more
Sourceยง

impl ShrAssign<&u32> for BigInt

Sourceยง

fn shr_assign(&mut self, rhs: &u32)

Performs the >>= operation. Read more
Sourceยง

impl ShrAssign<&u64> for BigInt

Sourceยง

fn shr_assign(&mut self, rhs: &u64)

Performs the >>= operation. Read more
Sourceยง

impl ShrAssign<&u8> for BigInt

Sourceยง

fn shr_assign(&mut self, rhs: &u8)

Performs the >>= operation. Read more
Sourceยง

impl ShrAssign<&usize> for BigInt

Sourceยง

fn shr_assign(&mut self, rhs: &usize)

Performs the >>= operation. Read more
Sourceยง

impl ShrAssign<i128> for BigInt

Sourceยง

fn shr_assign(&mut self, rhs: i128)

Performs the >>= operation. Read more
Sourceยง

impl ShrAssign<i16> for BigInt

Sourceยง

fn shr_assign(&mut self, rhs: i16)

Performs the >>= operation. Read more
Sourceยง

impl ShrAssign<i32> for BigInt

Sourceยง

fn shr_assign(&mut self, rhs: i32)

Performs the >>= operation. Read more
Sourceยง

impl ShrAssign<i64> for BigInt

Sourceยง

fn shr_assign(&mut self, rhs: i64)

Performs the >>= operation. Read more
Sourceยง

impl ShrAssign<i8> for BigInt

Sourceยง

fn shr_assign(&mut self, rhs: i8)

Performs the >>= operation. Read more
Sourceยง

impl ShrAssign<isize> for BigInt

Sourceยง

fn shr_assign(&mut self, rhs: isize)

Performs the >>= operation. Read more
Sourceยง

impl ShrAssign<u128> for BigInt

Sourceยง

fn shr_assign(&mut self, rhs: u128)

Performs the >>= operation. Read more
Sourceยง

impl ShrAssign<u16> for BigInt

Sourceยง

fn shr_assign(&mut self, rhs: u16)

Performs the >>= operation. Read more
Sourceยง

impl ShrAssign<u32> for BigInt

Sourceยง

fn shr_assign(&mut self, rhs: u32)

Performs the >>= operation. Read more
Sourceยง

impl ShrAssign<u64> for BigInt

Sourceยง

fn shr_assign(&mut self, rhs: u64)

Performs the >>= operation. Read more
Sourceยง

impl ShrAssign<u8> for BigInt

Sourceยง

fn shr_assign(&mut self, rhs: u8)

Performs the >>= operation. Read more
Sourceยง

impl ShrAssign<usize> for BigInt

Sourceยง

fn shr_assign(&mut self, rhs: usize)

Performs the >>= operation. Read more
Sourceยง

impl Signed for BigInt

Sourceยง

fn abs(&self) -> BigInt

Computes the absolute value. Read more
Sourceยง

fn abs_sub(&self, other: &BigInt) -> BigInt

The positive difference of two numbers. Read more
Sourceยง

fn signum(&self) -> BigInt

Returns the sign of the number. Read more
Sourceยง

fn is_positive(&self) -> bool

Returns true if the number is positive and false if the number is zero or negative.
Sourceยง

fn is_negative(&self) -> bool

Returns true if the number is negative and false if the number is zero or positive.
Sourceยง

impl Sub<&BigInt> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &BigInt) -> <&BigInt as Sub<&BigInt>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<&BigInt> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &BigInt) -> <BigInt as Sub<&BigInt>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<&i128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &i128) -> <&BigInt as Sub<&i128>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<&i128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &i128) -> <BigInt as Sub<&i128>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<&i16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &i16) -> <&BigInt as Sub<&i16>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<&i16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &i16) -> <BigInt as Sub<&i16>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<&i32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &i32) -> <&BigInt as Sub<&i32>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<&i32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &i32) -> <BigInt as Sub<&i32>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<&i64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &i64) -> <&BigInt as Sub<&i64>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<&i64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &i64) -> <BigInt as Sub<&i64>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<&i8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &i8) -> <&BigInt as Sub<&i8>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<&i8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &i8) -> <BigInt as Sub<&i8>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<&isize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &isize) -> <&BigInt as Sub<&isize>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<&isize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &isize) -> <BigInt as Sub<&isize>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<&u128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &u128) -> <&BigInt as Sub<&u128>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<&u128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &u128) -> <BigInt as Sub<&u128>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<&u16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &u16) -> <&BigInt as Sub<&u16>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<&u16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &u16) -> <BigInt as Sub<&u16>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<&u32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &u32) -> <&BigInt as Sub<&u32>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<&u32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &u32) -> <BigInt as Sub<&u32>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<&u64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &u64) -> <&BigInt as Sub<&u64>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<&u64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &u64) -> <BigInt as Sub<&u64>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<&u8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &u8) -> <&BigInt as Sub<&u8>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<&u8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &u8) -> <BigInt as Sub<&u8>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<&usize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &usize) -> <&BigInt as Sub<&usize>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<&usize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: &usize) -> <BigInt as Sub<&usize>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<BigInt> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: BigInt) -> <&BigInt as Sub<BigInt>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<i128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: i128) -> <&BigInt as Sub<i128>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<i128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: i128) -> <BigInt as Sub<i128>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<i16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: i16) -> <&BigInt as Sub<i16>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<i16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: i16) -> <BigInt as Sub<i16>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<i32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: i32) -> <&BigInt as Sub<i32>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<i32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: i32) -> <BigInt as Sub<i32>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<i64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: i64) -> <&BigInt as Sub<i64>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<i64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: i64) -> <BigInt as Sub<i64>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<i8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: i8) -> <&BigInt as Sub<i8>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<i8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: i8) -> <BigInt as Sub<i8>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<isize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: isize) -> <&BigInt as Sub<isize>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<isize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: isize) -> <BigInt as Sub<isize>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<u128> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: u128) -> <&BigInt as Sub<u128>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<u128> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: u128) -> <BigInt as Sub<u128>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<u16> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: u16) -> <&BigInt as Sub<u16>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<u16> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: u16) -> <BigInt as Sub<u16>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<u32> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: u32) -> <&BigInt as Sub<u32>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<u32> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: u32) -> <BigInt as Sub<u32>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<u64> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: u64) -> <&BigInt as Sub<u64>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<u64> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: u64) -> <BigInt as Sub<u64>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<u8> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: u8) -> <&BigInt as Sub<u8>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<u8> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: u8) -> <BigInt as Sub<u8>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<usize> for &BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: usize) -> <&BigInt as Sub<usize>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub<usize> for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: usize) -> <BigInt as Sub<usize>>::Output

Performs the - operation. Read more
Sourceยง

impl Sub for BigInt

Sourceยง

type Output = BigInt

The resulting type after applying the - operator.
Sourceยง

fn sub(self, rhs: BigInt) -> <BigInt as Sub>::Output

Performs the - operation. Read more
Sourceยง

impl SubAssign<&BigInt> for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: &BigInt)

Performs the -= operation. Read more
Sourceยง

impl SubAssign<&i128> for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: &i128)

Performs the -= operation. Read more
Sourceยง

impl SubAssign<&i16> for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: &i16)

Performs the -= operation. Read more
Sourceยง

impl SubAssign<&i32> for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: &i32)

Performs the -= operation. Read more
Sourceยง

impl SubAssign<&i64> for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: &i64)

Performs the -= operation. Read more
Sourceยง

impl SubAssign<&i8> for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: &i8)

Performs the -= operation. Read more
Sourceยง

impl SubAssign<&isize> for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: &isize)

Performs the -= operation. Read more
Sourceยง

impl SubAssign<&u128> for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: &u128)

Performs the -= operation. Read more
Sourceยง

impl SubAssign<&u16> for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: &u16)

Performs the -= operation. Read more
Sourceยง

impl SubAssign<&u32> for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: &u32)

Performs the -= operation. Read more
Sourceยง

impl SubAssign<&u64> for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: &u64)

Performs the -= operation. Read more
Sourceยง

impl SubAssign<&u8> for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: &u8)

Performs the -= operation. Read more
Sourceยง

impl SubAssign<&usize> for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: &usize)

Performs the -= operation. Read more
Sourceยง

impl SubAssign<i128> for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: i128)

Performs the -= operation. Read more
Sourceยง

impl SubAssign<i16> for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: i16)

Performs the -= operation. Read more
Sourceยง

impl SubAssign<i32> for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: i32)

Performs the -= operation. Read more
Sourceยง

impl SubAssign<i64> for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: i64)

Performs the -= operation. Read more
Sourceยง

impl SubAssign<i8> for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: i8)

Performs the -= operation. Read more
Sourceยง

impl SubAssign<isize> for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: isize)

Performs the -= operation. Read more
Sourceยง

impl SubAssign<u128> for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: u128)

Performs the -= operation. Read more
Sourceยง

impl SubAssign<u16> for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: u16)

Performs the -= operation. Read more
Sourceยง

impl SubAssign<u32> for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: u32)

Performs the -= operation. Read more
Sourceยง

impl SubAssign<u64> for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: u64)

Performs the -= operation. Read more
Sourceยง

impl SubAssign<u8> for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: u8)

Performs the -= operation. Read more
Sourceยง

impl SubAssign<usize> for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: usize)

Performs the -= operation. Read more
Sourceยง

impl SubAssign for BigInt

Sourceยง

fn sub_assign(&mut self, rhs: BigInt)

Performs the -= operation. Read more
Sourceยง

impl<T> Sum<T> for BigInt
where BigInt: Add<T, Output = BigInt>,

Sourceยง

fn sum<I>(iter: I) -> BigInt
where I: Iterator<Item = T>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
Sourceยง

impl ToBigInt for BigInt

Sourceยง

impl ToBigUint for BigInt

Sourceยง

impl ToPrimitive for BigInt

Sourceยง

fn to_i8(&self) -> Option<i8>

Converts the value of self to an i8. If the value cannot be represented by an i8, then None is returned.
Sourceยง

fn to_i16(&self) -> Option<i16>

Converts the value of self to an i16. If the value cannot be represented by an i16, then None is returned.
Sourceยง

fn to_i32(&self) -> Option<i32>

Converts the value of self to an i32. If the value cannot be represented by an i32, then None is returned.
Sourceยง

fn to_i64(&self) -> Option<i64>

Converts the value of self to an i64. If the value cannot be represented by an i64, then None is returned.
Sourceยง

fn to_isize(&self) -> Option<isize>

Converts the value of self to an isize. If the value cannot be represented by an isize, then None is returned.
Sourceยง

fn to_i128(&self) -> Option<i128>

Converts the value of self to an i128. If the value cannot be represented by an i128 (i64 under the default implementation), then None is returned. Read more
Sourceยง

fn to_u8(&self) -> Option<u8>

Converts the value of self to a u8. If the value cannot be represented by a u8, then None is returned.
Sourceยง

fn to_u16(&self) -> Option<u16>

Converts the value of self to a u16. If the value cannot be represented by a u16, then None is returned.
Sourceยง

fn to_u32(&self) -> Option<u32>

Converts the value of self to a u32. If the value cannot be represented by a u32, then None is returned.
Sourceยง

fn to_u64(&self) -> Option<u64>

Converts the value of self to a u64. If the value cannot be represented by a u64, then None is returned.
Sourceยง

fn to_usize(&self) -> Option<usize>

Converts the value of self to a usize. If the value cannot be represented by a usize, then None is returned.
Sourceยง

fn to_u128(&self) -> Option<u128>

Converts the value of self to a u128. If the value cannot be represented by a u128 (u64 under the default implementation), then None is returned. Read more
Sourceยง

fn to_f32(&self) -> Option<f32>

Converts the value of self to an f32. Overflows may map to positive or negative inifinity, otherwise None is returned if the value cannot be represented by an f32.
Sourceยง

fn to_f64(&self) -> Option<f64>

Converts the value of self to an f64. Overflows may map to positive or negative inifinity, otherwise None is returned if the value cannot be represented by an f64. Read more
Sourceยง

impl ToPyObject for BigInt

Sourceยง

impl UpperHex for BigInt

Sourceยง

fn fmt(&self, __derive_more_f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Sourceยง

impl Zero for BigInt

Sourceยง

fn zero() -> BigInt

Returns the additive identity element of Self, 0. Read more
Sourceยง

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
Sourceยง

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
Sourceยง

impl Eq for BigInt

Sourceยง

impl StructuralPartialEq for BigInt

Auto Trait Implementationsยง

Blanket Implementationsยง

Sourceยง

impl<T> Any for T
where T: 'static + ?Sized,

Sourceยง

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Sourceยง

impl<I> Average for I
where &'a I: for<'a, 'b> BitAnd<&'b I, Output = I> + for<'a, 'b> BitOr<&'b I, Output = I> + for<'a, 'b> BitXor<&'b I, Output = I>, I: Integer + Shr<usize, Output = I>,

Sourceยง

fn average_floor(&self, other: &I) -> I

Returns the floor value of the average of self and other.

Sourceยง

fn average_ceil(&self, other: &I) -> I

Returns the ceil value of the average of self and other.

Sourceยง

impl<T> Borrow<T> for T
where T: ?Sized,

Sourceยง

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Sourceยง

impl<T> BorrowMut<T> for T
where T: ?Sized,

Sourceยง

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Sourceยง

impl<T> CloneToUninit for T
where T: Clone,

Sourceยง

unsafe fn clone_to_uninit(&self, dest: *mut u8)

๐Ÿ”ฌThis is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Sourceยง

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

Sourceยง

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
Sourceยง

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Sourceยง

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Sourceยง

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Sourceยง

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Sourceยง

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Sourceยง

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Sourceยง

impl<T, U> ExactFrom<T> for U
where U: TryFrom<T>,

Sourceยง

fn exact_from(value: T) -> U

Sourceยง

impl<T, U> ExactInto<U> for T
where U: ExactFrom<T>,

Sourceยง

impl<T> From<T> for T

Sourceยง

fn from(t: T) -> T

Returns the argument unchanged.

Sourceยง

impl<T, U> Into<U> for T
where U: From<T>,

Sourceยง

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Sourceยง

impl<T> IntoEither for T

Sourceยง

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Sourceยง

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Sourceยง

impl<T, U> OverflowingInto<U> for T
where U: OverflowingFrom<T>,

Sourceยง

impl<T, U> RoundingInto<U> for T
where U: RoundingFrom<T>,

Sourceยง

impl<T, U> SaturatingInto<U> for T
where U: SaturatingFrom<T>,

Sourceยง

impl<T> ToBinaryString for T
where T: Binary,

Sourceยง

fn to_binary_string(&self) -> String

Returns the String produced by Ts Binary implementation.

ยงExamples
use malachite_base::strings::ToBinaryString;

assert_eq!(5u64.to_binary_string(), "101");
assert_eq!((-100i16).to_binary_string(), "1111111110011100");
Sourceยง

impl<T> ToDebugString for T
where T: Debug,

Sourceยง

fn to_debug_string(&self) -> String

Returns the String produced by Ts Debug implementation.

ยงExamples
use malachite_base::strings::ToDebugString;

assert_eq!([1, 2, 3].to_debug_string(), "[1, 2, 3]");
assert_eq!(
    [vec![2, 3], vec![], vec![4]].to_debug_string(),
    "[[2, 3], [], [4]]"
);
assert_eq!(Some(5).to_debug_string(), "Some(5)");
Sourceยง

impl<T> ToLowerHexString for T
where T: LowerHex,

Sourceยง

fn to_lower_hex_string(&self) -> String

Returns the String produced by Ts LowerHex implementation.

ยงExamples
use malachite_base::strings::ToLowerHexString;

assert_eq!(50u64.to_lower_hex_string(), "32");
assert_eq!((-100i16).to_lower_hex_string(), "ff9c");
Sourceยง

impl<T> ToOctalString for T
where T: Octal,

Sourceยง

fn to_octal_string(&self) -> String

Returns the String produced by Ts Octal implementation.

ยงExamples
use malachite_base::strings::ToOctalString;

assert_eq!(50u64.to_octal_string(), "62");
assert_eq!((-100i16).to_octal_string(), "177634");
Sourceยง

impl<T> ToOwned for T
where T: Clone,

Sourceยง

type Owned = T

The resulting type after obtaining ownership.
Sourceยง

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Sourceยง

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Sourceยง

impl<T> ToPyResult for T
where T: ToPyObject,

Sourceยง

impl<T> ToString for T
where T: Display + ?Sized,

Sourceยง

fn to_string(&self) -> String

Converts the given value to a String. Read more
Sourceยง

impl<T> ToUpperHexString for T
where T: UpperHex,

Sourceยง

fn to_upper_hex_string(&self) -> String

Returns the String produced by Ts UpperHex implementation.

ยงExamples
use malachite_base::strings::ToUpperHexString;

assert_eq!(50u64.to_upper_hex_string(), "32");
assert_eq!((-100i16).to_upper_hex_string(), "FF9C");
Sourceยง

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Sourceยง

type Error = Infallible

The type returned in the event of a conversion error.
Sourceยง

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Sourceยง

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Sourceยง

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Sourceยง

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Sourceยง

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Sourceยง

fn vzip(self) -> V

Sourceยง

impl<T, U> WrappingInto<U> for T
where U: WrappingFrom<T>,

Sourceยง

impl<T> NumAssign for T
where T: Num + NumAssignOps,

Sourceยง

impl<T, Rhs> NumAssignOps<Rhs> for T
where T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>,

Sourceยง

impl<T> NumAssignRef for T
where T: NumAssign + for<'r> NumAssignOps<&'r T>,

Sourceยง

impl<T, Rhs, Output> NumOps<Rhs, Output> for T
where T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>,

Sourceยง

impl<T> NumRef for T
where T: Num + for<'r> NumOps<&'r T>,

Sourceยง

impl<T> PyThreadingConstraint for T

Sourceยง

impl<T, Base> RefNum<Base> for T
where T: NumOps<Base, Base> + for<'r> NumOps<&'r Base, Base>,

Morty Proxy This is a proxified and sanitized view of the page, visit original site.