Struct BigUint

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

Implementations§

Source§

impl BigUint

Source

pub fn new(digits: Vec<u32>) -> BigUint

Source

pub fn from_slice(slice: &[u32]) -> BigUint

Source

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

Source

pub fn from_bytes_be(bytes: &[u8]) -> BigUint

Source

pub fn from_bytes_le(bytes: &[u8]) -> BigUint

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

pub fn bits(&self) -> u64

Source

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

Source

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

Source

pub fn cbrt(&self) -> BigUint

Source

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

Source

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

Source

pub fn trailing_ones(&self) -> u64

Source

pub fn count_ones(&self) -> 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<&BigUint> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<&BigUint> for BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<&u128> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<&u128> for BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<&u16> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<&u16> for BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<&u32> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<&u32> for BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<&u64> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<&u64> for BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<&u8> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<&u8> for BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<&usize> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<&usize> for BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<BigUint> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<u128> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<u128> for BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<u16> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<u16> for BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<u32> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<u32> for BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<u64> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<u64> for BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<u8> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<u8> for BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<usize> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<usize> for BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add for BigUint

Source§

type Output = BigUint

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl AddAssign<&BigUint> for BigUint

Source§

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

Performs the += operation. Read more
Source§

impl AddAssign<&u128> for BigUint

Source§

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

Performs the += operation. Read more
Source§

impl AddAssign<&u16> for BigUint

Source§

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

Performs the += operation. Read more
Source§

impl AddAssign<&u32> for BigUint

Source§

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

Performs the += operation. Read more
Source§

impl AddAssign<&u64> for BigUint

Source§

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

Performs the += operation. Read more
Source§

impl AddAssign<&u8> for BigUint

Source§

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

Performs the += operation. Read more
Source§

impl AddAssign<&usize> for BigUint

Source§

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

Performs the += operation. Read more
Source§

impl AddAssign<u128> for BigUint

Source§

fn add_assign(&mut self, rhs: u128)

Performs the += operation. Read more
Source§

impl AddAssign<u16> for BigUint

Source§

fn add_assign(&mut self, rhs: u16)

Performs the += operation. Read more
Source§

impl AddAssign<u32> for BigUint

Source§

fn add_assign(&mut self, rhs: u32)

Performs the += operation. Read more
Source§

impl AddAssign<u64> for BigUint

Source§

fn add_assign(&mut self, rhs: u64)

Performs the += operation. Read more
Source§

impl AddAssign<u8> for BigUint

Source§

fn add_assign(&mut self, rhs: u8)

Performs the += operation. Read more
Source§

impl AddAssign<usize> for BigUint

Source§

fn add_assign(&mut self, rhs: usize)

Performs the += operation. Read more
Source§

impl AddAssign for BigUint

Source§

fn add_assign(&mut self, rhs: BigUint)

Performs the += operation. Read more
Source§

impl Binary for BigUint

Source§

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

Formats the value using the given formatter. Read more
Source§

impl BitAnd<&BigUint> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

impl BitAnd<&BigUint> for BigUint

Source§

type Output = BigUint

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

impl BitAnd<BigUint> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

impl BitAnd for BigUint

Source§

type Output = BigUint

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

impl BitAndAssign<&BigUint> for BigUint

Source§

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

Performs the &= operation. Read more
Source§

impl BitAndAssign for BigUint

Source§

fn bitand_assign(&mut self, rhs: BigUint)

Performs the &= operation. Read more
Source§

impl BitOr<&BigUint> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

impl BitOr<&BigUint> for BigUint

Source§

type Output = BigUint

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

impl BitOr<BigUint> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

impl BitOr for BigUint

Source§

type Output = BigUint

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

impl BitOrAssign<&BigUint> for BigUint

Source§

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

Performs the |= operation. Read more
Source§

impl BitOrAssign for BigUint

Source§

fn bitor_assign(&mut self, rhs: BigUint)

Performs the |= operation. Read more
Source§

impl BitXor<&BigUint> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

impl BitXor<&BigUint> for BigUint

Source§

type Output = BigUint

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

impl BitXor<BigUint> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

impl BitXor for BigUint

Source§

type Output = BigUint

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

impl BitXorAssign<&BigUint> for BigUint

Source§

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

Performs the ^= operation. Read more
Source§

impl BitXorAssign for BigUint

Source§

fn bitxor_assign(&mut self, rhs: BigUint)

Performs the ^= operation. Read more
Source§

impl CheckedAdd for BigUint

Source§

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

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

impl CheckedDiv for BigUint

Source§

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

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

impl CheckedMul for BigUint

Source§

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

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

impl CheckedSub for BigUint

Source§

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

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

impl Clone for BigUint

Source§

fn clone(&self) -> BigUint

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 BigUint

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Default for BigUint

Source§

fn default() -> BigUint

Returns the “default value” for a type. Read more
Source§

impl Display for BigUint

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Div<&BigUint> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<&BigUint> for BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<&u128> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<&u128> for BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<&u16> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<&u16> for BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<&u32> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<&u32> for BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<&u64> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<&u64> for BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<&u8> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<&u8> for BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<&usize> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<&usize> for BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<BigUint> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<u128> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<u128> for BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<u16> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<u16> for BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<u32> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<u32> for BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<u64> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<u64> for BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<u8> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<u8> for BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<usize> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<usize> for BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div for BigUint

Source§

type Output = BigUint

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl DivAssign<&BigUint> for BigUint

Source§

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

Performs the /= operation. Read more
Source§

impl DivAssign<&u128> for BigUint

Source§

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

Performs the /= operation. Read more
Source§

impl DivAssign<&u16> for BigUint

Source§

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

Performs the /= operation. Read more
Source§

impl DivAssign<&u32> for BigUint

Source§

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

Performs the /= operation. Read more
Source§

impl DivAssign<&u64> for BigUint

Source§

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

Performs the /= operation. Read more
Source§

impl DivAssign<&u8> for BigUint

Source§

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

Performs the /= operation. Read more
Source§

impl DivAssign<&usize> for BigUint

Source§

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

Performs the /= operation. Read more
Source§

impl DivAssign<u128> for BigUint

Source§

fn div_assign(&mut self, rhs: u128)

Performs the /= operation. Read more
Source§

impl DivAssign<u16> for BigUint

Source§

fn div_assign(&mut self, rhs: u16)

Performs the /= operation. Read more
Source§

impl DivAssign<u32> for BigUint

Source§

fn div_assign(&mut self, rhs: u32)

Performs the /= operation. Read more
Source§

impl DivAssign<u64> for BigUint

Source§

fn div_assign(&mut self, rhs: u64)

Performs the /= operation. Read more
Source§

impl DivAssign<u8> for BigUint

Source§

fn div_assign(&mut self, rhs: u8)

Performs the /= operation. Read more
Source§

impl DivAssign<usize> for BigUint

Source§

fn div_assign(&mut self, rhs: usize)

Performs the /= operation. Read more
Source§

impl DivAssign for BigUint

Source§

fn div_assign(&mut self, rhs: BigUint)

Performs the /= operation. Read more
Source§

impl From<BigUint> for BigInt

Source§

fn from(value: BigUint) -> BigInt

Converts to this type from the input type.
Source§

impl From<Natural> for BigUint

Source§

fn from(value: Natural) -> BigUint

Converts to this type from the input type.
Source§

impl From<u128> for BigUint

Source§

fn from(value: u128) -> BigUint

Converts to this type from the input type.
Source§

impl From<u16> for BigUint

Source§

fn from(value: u16) -> BigUint

Converts to this type from the input type.
Source§

impl From<u32> for BigUint

Source§

fn from(value: u32) -> BigUint

Converts to this type from the input type.
Source§

impl From<u64> for BigUint

Source§

fn from(value: u64) -> BigUint

Converts to this type from the input type.
Source§

impl From<u8> for BigUint

Source§

fn from(value: u8) -> BigUint

Converts to this type from the input type.
Source§

impl From<usize> for BigUint

Source§

fn from(value: usize) -> BigUint

Converts to this type from the input type.
Source§

impl FromPrimitive for BigUint

Source§

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

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<BigUint>

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<BigUint>

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<BigUint>

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<BigUint>

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<BigUint>

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<BigUint>

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<BigUint>

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<BigUint>

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<BigUint>

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<BigUint>

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<BigUint>

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<BigUint>

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<BigUint>

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 BigUint

Source§

type Err = ParseBigIntError

The associated error which can be returned from parsing.
Source§

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

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

impl Hash for BigUint

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 BigUint

Source§

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

Floored integer division. Read more
Source§

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

Floored integer modulo, satisfying: Read more
Source§

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

Greatest Common Divisor (GCD). Read more
Source§

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

Lowest Common Multiple (LCM). Read more
Source§

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

👎Deprecated: Please use is_multiple_of instead
Deprecated, use is_multiple_of instead.
Source§

fn is_multiple_of(&self, other: &BigUint) -> 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: &BigUint) -> (BigUint, BigUint)

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 BigUint

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Mul<&BigUint> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<&BigUint> for BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<&u128> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<&u128> for BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<&u16> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<&u16> for BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<&u32> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<&u32> for BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<&u64> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<&u64> for BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<&u8> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<&u8> for BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<&usize> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<&usize> for BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<BigUint> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<u128> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<u128> for BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<u16> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<u16> for BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<u32> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<u32> for BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<u64> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<u64> for BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<u8> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<u8> for BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<usize> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<usize> for BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul for BigUint

Source§

type Output = BigUint

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl MulAssign<&BigUint> for BigUint

Source§

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

Performs the *= operation. Read more
Source§

impl MulAssign<&u128> for BigUint

Source§

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

Performs the *= operation. Read more
Source§

impl MulAssign<&u16> for BigUint

Source§

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

Performs the *= operation. Read more
Source§

impl MulAssign<&u32> for BigUint

Source§

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

Performs the *= operation. Read more
Source§

impl MulAssign<&u64> for BigUint

Source§

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

Performs the *= operation. Read more
Source§

impl MulAssign<&u8> for BigUint

Source§

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

Performs the *= operation. Read more
Source§

impl MulAssign<&usize> for BigUint

Source§

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

Performs the *= operation. Read more
Source§

impl MulAssign<u128> for BigUint

Source§

fn mul_assign(&mut self, rhs: u128)

Performs the *= operation. Read more
Source§

impl MulAssign<u16> for BigUint

Source§

fn mul_assign(&mut self, rhs: u16)

Performs the *= operation. Read more
Source§

impl MulAssign<u32> for BigUint

Source§

fn mul_assign(&mut self, rhs: u32)

Performs the *= operation. Read more
Source§

impl MulAssign<u64> for BigUint

Source§

fn mul_assign(&mut self, rhs: u64)

Performs the *= operation. Read more
Source§

impl MulAssign<u8> for BigUint

Source§

fn mul_assign(&mut self, rhs: u8)

Performs the *= operation. Read more
Source§

impl MulAssign<usize> for BigUint

Source§

fn mul_assign(&mut self, rhs: usize)

Performs the *= operation. Read more
Source§

impl MulAssign for BigUint

Source§

fn mul_assign(&mut self, rhs: BigUint)

Performs the *= operation. Read more
Source§

impl Num for BigUint

Source§

type FromStrRadixErr = ParseBigIntError

Source§

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

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

impl Octal for BigUint

Source§

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

Formats the value using the given formatter. Read more
Source§

impl One for BigUint

Source§

fn one() -> BigUint

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 BigUint

Source§

fn cmp(&self, other: &BigUint) -> 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 BigUint

Source§

fn eq(&self, other: &BigUint) -> 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 BigUint

Source§

fn partial_cmp(&self, other: &BigUint) -> 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 &BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

fn pow(self, rhs: &BigUint) -> <&BigUint 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<&BigUint> for BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

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

Returns self to the power rhs. Read more
Source§

impl Pow<&u128> for &BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

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

Returns self to the power rhs. Read more
Source§

impl Pow<&u128> for BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

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

Returns self to the power rhs. Read more
Source§

impl Pow<&u16> for &BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

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

Returns self to the power rhs. Read more
Source§

impl Pow<&u16> for BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

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

Returns self to the power rhs. Read more
Source§

impl Pow<&u32> for &BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

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

Returns self to the power rhs. Read more
Source§

impl Pow<&u32> for BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

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

Returns self to the power rhs. Read more
Source§

impl Pow<&u64> for &BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

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

Returns self to the power rhs. Read more
Source§

impl Pow<&u64> for BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

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

Returns self to the power rhs. Read more
Source§

impl Pow<&u8> for &BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

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

Returns self to the power rhs. Read more
Source§

impl Pow<&u8> for BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

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

Returns self to the power rhs. Read more
Source§

impl Pow<&usize> for &BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

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

Returns self to the power rhs. Read more
Source§

impl Pow<&usize> for BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

fn pow(self, rhs: &usize) -> <BigUint 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 &BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

fn pow(self, rhs: BigUint) -> <&BigUint 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<BigUint> for BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

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

Returns self to the power rhs. Read more
Source§

impl Pow<u128> for &BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

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

Returns self to the power rhs. Read more
Source§

impl Pow<u128> for BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

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

Returns self to the power rhs. Read more
Source§

impl Pow<u16> for &BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

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

Returns self to the power rhs. Read more
Source§

impl Pow<u16> for BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

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

Returns self to the power rhs. Read more
Source§

impl Pow<u32> for &BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

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

Returns self to the power rhs. Read more
Source§

impl Pow<u32> for BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

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

Returns self to the power rhs. Read more
Source§

impl Pow<u64> for &BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

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

Returns self to the power rhs. Read more
Source§

impl Pow<u64> for BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

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

Returns self to the power rhs. Read more
Source§

impl Pow<u8> for &BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

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

Returns self to the power rhs. Read more
Source§

impl Pow<u8> for BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

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

Returns self to the power rhs. Read more
Source§

impl Pow<usize> for &BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

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

Returns self to the power rhs. Read more
Source§

impl Pow<usize> for BigUint

Source§

type Output = BigUint

The result after applying the operator.
Source§

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

Returns self to the power rhs. Read more
Source§

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

Source§

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

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

impl Rem<&BigUint> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<&BigUint> for BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<&u128> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<&u128> for BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<&u16> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<&u16> for BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<&u32> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<&u32> for BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<&u64> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<&u64> for BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<&u8> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<&u8> for BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<&usize> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<&usize> for BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<BigUint> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<u128> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<u128> for BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<u16> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<u16> for BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<u32> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<u32> for BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<u64> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<u64> for BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<u8> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<u8> for BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<usize> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<usize> for BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem for BigUint

Source§

type Output = BigUint

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl RemAssign<&BigUint> for BigUint

Source§

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

Performs the %= operation. Read more
Source§

impl RemAssign<&u128> for BigUint

Source§

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

Performs the %= operation. Read more
Source§

impl RemAssign<&u16> for BigUint

Source§

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

Performs the %= operation. Read more
Source§

impl RemAssign<&u32> for BigUint

Source§

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

Performs the %= operation. Read more
Source§

impl RemAssign<&u64> for BigUint

Source§

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

Performs the %= operation. Read more
Source§

impl RemAssign<&u8> for BigUint

Source§

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

Performs the %= operation. Read more
Source§

impl RemAssign<&usize> for BigUint

Source§

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

Performs the %= operation. Read more
Source§

impl RemAssign<u128> for BigUint

Source§

fn rem_assign(&mut self, rhs: u128)

Performs the %= operation. Read more
Source§

impl RemAssign<u16> for BigUint

Source§

fn rem_assign(&mut self, rhs: u16)

Performs the %= operation. Read more
Source§

impl RemAssign<u32> for BigUint

Source§

fn rem_assign(&mut self, rhs: u32)

Performs the %= operation. Read more
Source§

impl RemAssign<u64> for BigUint

Source§

fn rem_assign(&mut self, rhs: u64)

Performs the %= operation. Read more
Source§

impl RemAssign<u8> for BigUint

Source§

fn rem_assign(&mut self, rhs: u8)

Performs the %= operation. Read more
Source§

impl RemAssign<usize> for BigUint

Source§

fn rem_assign(&mut self, rhs: usize)

Performs the %= operation. Read more
Source§

impl RemAssign for BigUint

Source§

fn rem_assign(&mut self, rhs: BigUint)

Performs the %= operation. Read more
Source§

impl Roots for BigUint

Source§

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

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 Shl<&i128> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<&i128> for BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<&i16> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<&i16> for BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<&i32> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<&i32> for BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<&i64> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<&i64> for BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<&i8> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<&i8> for BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<&isize> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<&isize> for BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<&u128> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<&u128> for BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<&u16> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<&u16> for BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<&u32> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<&u32> for BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<&u64> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<&u64> for BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<&u8> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<&u8> for BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<&usize> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<&usize> for BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<i128> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<i128> for BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<i16> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<i16> for BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<i32> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<i32> for BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<i64> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<i64> for BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<i8> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<i8> for BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<isize> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<isize> for BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<u128> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<u128> for BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<u16> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<u16> for BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<u32> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<u32> for BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<u64> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<u64> for BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<u8> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<u8> for BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<usize> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<usize> for BigUint

Source§

type Output = BigUint

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl ShlAssign<&i128> for BigUint

Source§

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

Performs the <<= operation. Read more
Source§

impl ShlAssign<&i16> for BigUint

Source§

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

Performs the <<= operation. Read more
Source§

impl ShlAssign<&i32> for BigUint

Source§

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

Performs the <<= operation. Read more
Source§

impl ShlAssign<&i64> for BigUint

Source§

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

Performs the <<= operation. Read more
Source§

impl ShlAssign<&i8> for BigUint

Source§

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

Performs the <<= operation. Read more
Source§

impl ShlAssign<&isize> for BigUint

Source§

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

Performs the <<= operation. Read more
Source§

impl ShlAssign<&u128> for BigUint

Source§

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

Performs the <<= operation. Read more
Source§

impl ShlAssign<&u16> for BigUint

Source§

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

Performs the <<= operation. Read more
Source§

impl ShlAssign<&u32> for BigUint

Source§

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

Performs the <<= operation. Read more
Source§

impl ShlAssign<&u64> for BigUint

Source§

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

Performs the <<= operation. Read more
Source§

impl ShlAssign<&u8> for BigUint

Source§

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

Performs the <<= operation. Read more
Source§

impl ShlAssign<&usize> for BigUint

Source§

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

Performs the <<= operation. Read more
Source§

impl ShlAssign<i128> for BigUint

Source§

fn shl_assign(&mut self, rhs: i128)

Performs the <<= operation. Read more
Source§

impl ShlAssign<i16> for BigUint

Source§

fn shl_assign(&mut self, rhs: i16)

Performs the <<= operation. Read more
Source§

impl ShlAssign<i32> for BigUint

Source§

fn shl_assign(&mut self, rhs: i32)

Performs the <<= operation. Read more
Source§

impl ShlAssign<i64> for BigUint

Source§

fn shl_assign(&mut self, rhs: i64)

Performs the <<= operation. Read more
Source§

impl ShlAssign<i8> for BigUint

Source§

fn shl_assign(&mut self, rhs: i8)

Performs the <<= operation. Read more
Source§

impl ShlAssign<isize> for BigUint

Source§

fn shl_assign(&mut self, rhs: isize)

Performs the <<= operation. Read more
Source§

impl ShlAssign<u128> for BigUint

Source§

fn shl_assign(&mut self, rhs: u128)

Performs the <<= operation. Read more
Source§

impl ShlAssign<u16> for BigUint

Source§

fn shl_assign(&mut self, rhs: u16)

Performs the <<= operation. Read more
Source§

impl ShlAssign<u32> for BigUint

Source§

fn shl_assign(&mut self, rhs: u32)

Performs the <<= operation. Read more
Source§

impl ShlAssign<u64> for BigUint

Source§

fn shl_assign(&mut self, rhs: u64)

Performs the <<= operation. Read more
Source§

impl ShlAssign<u8> for BigUint

Source§

fn shl_assign(&mut self, rhs: u8)

Performs the <<= operation. Read more
Source§

impl ShlAssign<usize> for BigUint

Source§

fn shl_assign(&mut self, rhs: usize)

Performs the <<= operation. Read more
Source§

impl Shr<&i128> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &i128) -> <&BigUint as Shr<&i128>>::Output

Performs the >> operation. Read more
Source§

impl Shr<&i128> for BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &i128) -> <BigUint as Shr<&i128>>::Output

Performs the >> operation. Read more
Source§

impl Shr<&i16> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &i16) -> <&BigUint as Shr<&i16>>::Output

Performs the >> operation. Read more
Source§

impl Shr<&i16> for BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &i16) -> <BigUint as Shr<&i16>>::Output

Performs the >> operation. Read more
Source§

impl Shr<&i32> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &i32) -> <&BigUint as Shr<&i32>>::Output

Performs the >> operation. Read more
Source§

impl Shr<&i32> for BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &i32) -> <BigUint as Shr<&i32>>::Output

Performs the >> operation. Read more
Source§

impl Shr<&i64> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &i64) -> <&BigUint as Shr<&i64>>::Output

Performs the >> operation. Read more
Source§

impl Shr<&i64> for BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &i64) -> <BigUint as Shr<&i64>>::Output

Performs the >> operation. Read more
Source§

impl Shr<&i8> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &i8) -> <&BigUint as Shr<&i8>>::Output

Performs the >> operation. Read more
Source§

impl Shr<&i8> for BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &i8) -> <BigUint as Shr<&i8>>::Output

Performs the >> operation. Read more
Source§

impl Shr<&isize> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &isize) -> <&BigUint as Shr<&isize>>::Output

Performs the >> operation. Read more
Source§

impl Shr<&isize> for BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &isize) -> <BigUint as Shr<&isize>>::Output

Performs the >> operation. Read more
Source§

impl Shr<&u128> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &u128) -> <&BigUint as Shr<&u128>>::Output

Performs the >> operation. Read more
Source§

impl Shr<&u128> for BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &u128) -> <BigUint as Shr<&u128>>::Output

Performs the >> operation. Read more
Source§

impl Shr<&u16> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &u16) -> <&BigUint as Shr<&u16>>::Output

Performs the >> operation. Read more
Source§

impl Shr<&u16> for BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &u16) -> <BigUint as Shr<&u16>>::Output

Performs the >> operation. Read more
Source§

impl Shr<&u32> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &u32) -> <&BigUint as Shr<&u32>>::Output

Performs the >> operation. Read more
Source§

impl Shr<&u32> for BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &u32) -> <BigUint as Shr<&u32>>::Output

Performs the >> operation. Read more
Source§

impl Shr<&u64> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &u64) -> <&BigUint as Shr<&u64>>::Output

Performs the >> operation. Read more
Source§

impl Shr<&u64> for BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &u64) -> <BigUint as Shr<&u64>>::Output

Performs the >> operation. Read more
Source§

impl Shr<&u8> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &u8) -> <&BigUint as Shr<&u8>>::Output

Performs the >> operation. Read more
Source§

impl Shr<&u8> for BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &u8) -> <BigUint as Shr<&u8>>::Output

Performs the >> operation. Read more
Source§

impl Shr<&usize> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &usize) -> <&BigUint as Shr<&usize>>::Output

Performs the >> operation. Read more
Source§

impl Shr<&usize> for BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &usize) -> <BigUint as Shr<&usize>>::Output

Performs the >> operation. Read more
Source§

impl Shr<i128> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: i128) -> <&BigUint as Shr<i128>>::Output

Performs the >> operation. Read more
Source§

impl Shr<i128> for BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: i128) -> <BigUint as Shr<i128>>::Output

Performs the >> operation. Read more
Source§

impl Shr<i16> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: i16) -> <&BigUint as Shr<i16>>::Output

Performs the >> operation. Read more
Source§

impl Shr<i16> for BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: i16) -> <BigUint as Shr<i16>>::Output

Performs the >> operation. Read more
Source§

impl Shr<i32> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: i32) -> <&BigUint as Shr<i32>>::Output

Performs the >> operation. Read more
Source§

impl Shr<i32> for BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: i32) -> <BigUint as Shr<i32>>::Output

Performs the >> operation. Read more
Source§

impl Shr<i64> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: i64) -> <&BigUint as Shr<i64>>::Output

Performs the >> operation. Read more
Source§

impl Shr<i64> for BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: i64) -> <BigUint as Shr<i64>>::Output

Performs the >> operation. Read more
Source§

impl Shr<i8> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: i8) -> <&BigUint as Shr<i8>>::Output

Performs the >> operation. Read more
Source§

impl Shr<i8> for BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: i8) -> <BigUint as Shr<i8>>::Output

Performs the >> operation. Read more
Source§

impl Shr<isize> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: isize) -> <&BigUint as Shr<isize>>::Output

Performs the >> operation. Read more
Source§

impl Shr<isize> for BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: isize) -> <BigUint as Shr<isize>>::Output

Performs the >> operation. Read more
Source§

impl Shr<u128> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u128) -> <&BigUint as Shr<u128>>::Output

Performs the >> operation. Read more
Source§

impl Shr<u128> for BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u128) -> <BigUint as Shr<u128>>::Output

Performs the >> operation. Read more
Source§

impl Shr<u16> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u16) -> <&BigUint as Shr<u16>>::Output

Performs the >> operation. Read more
Source§

impl Shr<u16> for BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u16) -> <BigUint as Shr<u16>>::Output

Performs the >> operation. Read more
Source§

impl Shr<u32> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u32) -> <&BigUint as Shr<u32>>::Output

Performs the >> operation. Read more
Source§

impl Shr<u32> for BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u32) -> <BigUint as Shr<u32>>::Output

Performs the >> operation. Read more
Source§

impl Shr<u64> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u64) -> <&BigUint as Shr<u64>>::Output

Performs the >> operation. Read more
Source§

impl Shr<u64> for BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u64) -> <BigUint as Shr<u64>>::Output

Performs the >> operation. Read more
Source§

impl Shr<u8> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u8) -> <&BigUint as Shr<u8>>::Output

Performs the >> operation. Read more
Source§

impl Shr<u8> for BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u8) -> <BigUint as Shr<u8>>::Output

Performs the >> operation. Read more
Source§

impl Shr<usize> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: usize) -> <&BigUint as Shr<usize>>::Output

Performs the >> operation. Read more
Source§

impl Shr<usize> for BigUint

Source§

type Output = BigUint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: usize) -> <BigUint as Shr<usize>>::Output

Performs the >> operation. Read more
Source§

impl ShrAssign<&i128> for BigUint

Source§

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

Performs the >>= operation. Read more
Source§

impl ShrAssign<&i16> for BigUint

Source§

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

Performs the >>= operation. Read more
Source§

impl ShrAssign<&i32> for BigUint

Source§

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

Performs the >>= operation. Read more
Source§

impl ShrAssign<&i64> for BigUint

Source§

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

Performs the >>= operation. Read more
Source§

impl ShrAssign<&i8> for BigUint

Source§

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

Performs the >>= operation. Read more
Source§

impl ShrAssign<&isize> for BigUint

Source§

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

Performs the >>= operation. Read more
Source§

impl ShrAssign<&u128> for BigUint

Source§

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

Performs the >>= operation. Read more
Source§

impl ShrAssign<&u16> for BigUint

Source§

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

Performs the >>= operation. Read more
Source§

impl ShrAssign<&u32> for BigUint

Source§

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

Performs the >>= operation. Read more
Source§

impl ShrAssign<&u64> for BigUint

Source§

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

Performs the >>= operation. Read more
Source§

impl ShrAssign<&u8> for BigUint

Source§

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

Performs the >>= operation. Read more
Source§

impl ShrAssign<&usize> for BigUint

Source§

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

Performs the >>= operation. Read more
Source§

impl ShrAssign<i128> for BigUint

Source§

fn shr_assign(&mut self, rhs: i128)

Performs the >>= operation. Read more
Source§

impl ShrAssign<i16> for BigUint

Source§

fn shr_assign(&mut self, rhs: i16)

Performs the >>= operation. Read more
Source§

impl ShrAssign<i32> for BigUint

Source§

fn shr_assign(&mut self, rhs: i32)

Performs the >>= operation. Read more
Source§

impl ShrAssign<i64> for BigUint

Source§

fn shr_assign(&mut self, rhs: i64)

Performs the >>= operation. Read more
Source§

impl ShrAssign<i8> for BigUint

Source§

fn shr_assign(&mut self, rhs: i8)

Performs the >>= operation. Read more
Source§

impl ShrAssign<isize> for BigUint

Source§

fn shr_assign(&mut self, rhs: isize)

Performs the >>= operation. Read more
Source§

impl ShrAssign<u128> for BigUint

Source§

fn shr_assign(&mut self, rhs: u128)

Performs the >>= operation. Read more
Source§

impl ShrAssign<u16> for BigUint

Source§

fn shr_assign(&mut self, rhs: u16)

Performs the >>= operation. Read more
Source§

impl ShrAssign<u32> for BigUint

Source§

fn shr_assign(&mut self, rhs: u32)

Performs the >>= operation. Read more
Source§

impl ShrAssign<u64> for BigUint

Source§

fn shr_assign(&mut self, rhs: u64)

Performs the >>= operation. Read more
Source§

impl ShrAssign<u8> for BigUint

Source§

fn shr_assign(&mut self, rhs: u8)

Performs the >>= operation. Read more
Source§

impl ShrAssign<usize> for BigUint

Source§

fn shr_assign(&mut self, rhs: usize)

Performs the >>= operation. Read more
Source§

impl Sub<&BigUint> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &BigUint) -> <&BigUint as Sub<&BigUint>>::Output

Performs the - operation. Read more
Source§

impl Sub<&BigUint> for BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &BigUint) -> <BigUint as Sub<&BigUint>>::Output

Performs the - operation. Read more
Source§

impl Sub<&u128> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u128) -> <&BigUint as Sub<&u128>>::Output

Performs the - operation. Read more
Source§

impl Sub<&u128> for BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u128) -> <BigUint as Sub<&u128>>::Output

Performs the - operation. Read more
Source§

impl Sub<&u16> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u16) -> <&BigUint as Sub<&u16>>::Output

Performs the - operation. Read more
Source§

impl Sub<&u16> for BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u16) -> <BigUint as Sub<&u16>>::Output

Performs the - operation. Read more
Source§

impl Sub<&u32> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u32) -> <&BigUint as Sub<&u32>>::Output

Performs the - operation. Read more
Source§

impl Sub<&u32> for BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u32) -> <BigUint as Sub<&u32>>::Output

Performs the - operation. Read more
Source§

impl Sub<&u64> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u64) -> <&BigUint as Sub<&u64>>::Output

Performs the - operation. Read more
Source§

impl Sub<&u64> for BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u64) -> <BigUint as Sub<&u64>>::Output

Performs the - operation. Read more
Source§

impl Sub<&u8> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u8) -> <&BigUint as Sub<&u8>>::Output

Performs the - operation. Read more
Source§

impl Sub<&u8> for BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u8) -> <BigUint as Sub<&u8>>::Output

Performs the - operation. Read more
Source§

impl Sub<&usize> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &usize) -> <&BigUint as Sub<&usize>>::Output

Performs the - operation. Read more
Source§

impl Sub<&usize> for BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &usize) -> <BigUint as Sub<&usize>>::Output

Performs the - operation. Read more
Source§

impl Sub<BigUint> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: BigUint) -> <&BigUint as Sub<BigUint>>::Output

Performs the - operation. Read more
Source§

impl Sub<u128> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u128) -> <&BigUint as Sub<u128>>::Output

Performs the - operation. Read more
Source§

impl Sub<u128> for BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u128) -> <BigUint as Sub<u128>>::Output

Performs the - operation. Read more
Source§

impl Sub<u16> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u16) -> <&BigUint as Sub<u16>>::Output

Performs the - operation. Read more
Source§

impl Sub<u16> for BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u16) -> <BigUint as Sub<u16>>::Output

Performs the - operation. Read more
Source§

impl Sub<u32> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u32) -> <&BigUint as Sub<u32>>::Output

Performs the - operation. Read more
Source§

impl Sub<u32> for BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u32) -> <BigUint as Sub<u32>>::Output

Performs the - operation. Read more
Source§

impl Sub<u64> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u64) -> <&BigUint as Sub<u64>>::Output

Performs the - operation. Read more
Source§

impl Sub<u64> for BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u64) -> <BigUint as Sub<u64>>::Output

Performs the - operation. Read more
Source§

impl Sub<u8> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u8) -> <&BigUint as Sub<u8>>::Output

Performs the - operation. Read more
Source§

impl Sub<u8> for BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u8) -> <BigUint as Sub<u8>>::Output

Performs the - operation. Read more
Source§

impl Sub<usize> for &BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: usize) -> <&BigUint as Sub<usize>>::Output

Performs the - operation. Read more
Source§

impl Sub<usize> for BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: usize) -> <BigUint as Sub<usize>>::Output

Performs the - operation. Read more
Source§

impl Sub for BigUint

Source§

type Output = BigUint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: BigUint) -> <BigUint as Sub>::Output

Performs the - operation. Read more
Source§

impl SubAssign<&BigUint> for BigUint

Source§

fn sub_assign(&mut self, rhs: &BigUint)

Performs the -= operation. Read more
Source§

impl SubAssign<&u128> for BigUint

Source§

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

Performs the -= operation. Read more
Source§

impl SubAssign<&u16> for BigUint

Source§

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

Performs the -= operation. Read more
Source§

impl SubAssign<&u32> for BigUint

Source§

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

Performs the -= operation. Read more
Source§

impl SubAssign<&u64> for BigUint

Source§

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

Performs the -= operation. Read more
Source§

impl SubAssign<&u8> for BigUint

Source§

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

Performs the -= operation. Read more
Source§

impl SubAssign<&usize> for BigUint

Source§

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

Performs the -= operation. Read more
Source§

impl SubAssign<u128> for BigUint

Source§

fn sub_assign(&mut self, rhs: u128)

Performs the -= operation. Read more
Source§

impl SubAssign<u16> for BigUint

Source§

fn sub_assign(&mut self, rhs: u16)

Performs the -= operation. Read more
Source§

impl SubAssign<u32> for BigUint

Source§

fn sub_assign(&mut self, rhs: u32)

Performs the -= operation. Read more
Source§

impl SubAssign<u64> for BigUint

Source§

fn sub_assign(&mut self, rhs: u64)

Performs the -= operation. Read more
Source§

impl SubAssign<u8> for BigUint

Source§

fn sub_assign(&mut self, rhs: u8)

Performs the -= operation. Read more
Source§

impl SubAssign<usize> for BigUint

Source§

fn sub_assign(&mut self, rhs: usize)

Performs the -= operation. Read more
Source§

impl SubAssign for BigUint

Source§

fn sub_assign(&mut self, rhs: BigUint)

Performs the -= operation. Read more
Source§

impl<T> Sum<T> for BigUint
where BigUint: Add<T, Output = BigUint>,

Source§

fn sum<I>(iter: I) -> BigUint
where I: Iterator<Item = T>,

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl ToBigInt for BigUint

Source§

impl ToBigUint for BigUint

Source§

impl ToPrimitive for BigUint

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 TryFrom<i128> for BigUint

Source§

type Error = TryFromBigIntError<()>

The type returned in the event of a conversion error.
Source§

fn try_from(value: i128) -> Result<BigUint, <BigUint as TryFrom<i128>>::Error>

Performs the conversion.
Source§

impl TryFrom<i16> for BigUint

Source§

type Error = TryFromBigIntError<()>

The type returned in the event of a conversion error.
Source§

fn try_from(value: i16) -> Result<BigUint, <BigUint as TryFrom<i16>>::Error>

Performs the conversion.
Source§

impl TryFrom<i32> for BigUint

Source§

type Error = TryFromBigIntError<()>

The type returned in the event of a conversion error.
Source§

fn try_from(value: i32) -> Result<BigUint, <BigUint as TryFrom<i32>>::Error>

Performs the conversion.
Source§

impl TryFrom<i64> for BigUint

Source§

type Error = TryFromBigIntError<()>

The type returned in the event of a conversion error.
Source§

fn try_from(value: i64) -> Result<BigUint, <BigUint as TryFrom<i64>>::Error>

Performs the conversion.
Source§

impl TryFrom<i8> for BigUint

Source§

type Error = TryFromBigIntError<()>

The type returned in the event of a conversion error.
Source§

fn try_from(value: i8) -> Result<BigUint, <BigUint as TryFrom<i8>>::Error>

Performs the conversion.
Source§

impl TryFrom<isize> for BigUint

Source§

type Error = TryFromBigIntError<()>

The type returned in the event of a conversion error.
Source§

fn try_from(value: isize) -> Result<BigUint, <BigUint as TryFrom<isize>>::Error>

Performs the conversion.
Source§

impl UpperHex for BigUint

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Zero for BigUint

Source§

fn zero() -> BigUint

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 BigUint

Source§

impl StructuralPartialEq for BigUint

Source§

impl Unsigned for BigUint

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§

fn exact_into(self) -> U

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> 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§

fn wrapping_into(self) -> U

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>,