Struct IBig

Source
pub struct IBig(/* private fields */);
Expand description

An signed arbitrary precision integer.

This struct represents an arbitrarily large signed integer. Technically the size of the integer is bounded by the memory size, but it’s enough for practical use on modern devices.

§Parsing and printing

There are four ways to create an IBig instance:

  1. Use predifined constants (e.g. IBig::ZERO, IBig::NEG_ONE).
  2. Use the literal macro ibig! defined in the dashu-macro crate.
  3. Construct from a Sign and a UBig instance.
  4. Parse from a string.

Parsing from either literal or string supports representation with base 2~36.

For printing, the IBig type supports common formatting traits (Display, Debug, LowerHex, etc.). Specially, printing huge number using Debug will conveniently omit the middle digits of the number, only print the least and most significant (decimal) digits.

// parsing
let a = IBig::from(408580953453092208335085386466371u128);
let b = IBig::from(-0x1231abcd4134i64);
let c = IBig::from_str_radix("a2a123bbb127779cccc123", 32)?;
let d = IBig::from_str_radix("-1231abcd4134", 16)?;
assert_eq!(a, c);
assert_eq!(b, d);

// printing
assert_eq!(format!("{}", IBig::from(12)), "12");
assert_eq!(format!("{:#X}", IBig::from(-0xabcd)), "-0xABCD");
if Word::BITS == 64 {
    // number of digits to display depends on the word size
    assert_eq!(
        format!("{:?}", IBig::NEG_ONE << 1000),
        "-1071508607186267320..4386837205668069376"
    );
}

§Memory

The internal representation of IBig is exactly the same as UBig. It just use a small trick to store the sign bit without additional memory allocation. This means that IBig also has the small integer optimization and the niche bit to use with simple enums.

use core::mem::size_of;
assert_eq!(size_of::<IBig>(), size_of::<UBig>());
assert_eq!(size_of::<IBig>(), size_of::<Option<IBig>>());

Implementations§

Source§

impl IBig

Source

pub const fn trailing_zeros(&self) -> Option<usize>

Returns the number of trailing zeros in the two’s complement binary representation.

In other words, it is the largest n such that 2 to the power of n divides the number.

For 0, it returns None.

§Examples
assert_eq!(IBig::from(17).trailing_zeros(), Some(0));
assert_eq!(IBig::from(-48).trailing_zeros(), Some(4));
assert_eq!(IBig::from(-0b101000000).trailing_zeros(), Some(6));
assert_eq!(IBig::ZERO.trailing_zeros(), None);
§Availability

Const since Rust 1.64

Source

pub const fn trailing_ones(&self) -> Option<usize>

Returns the number of trailing ones in the two’s complement binary representation.

For positive self, it’s equivalent to self.unsigned_abs().trailing_zeros(). For negative self, it’s equivalent to (!self.unsigned_abs() + 1).trailing_zeros().

For -1, it returns None.

§Examples
assert_eq!(IBig::from(17).trailing_ones(), Some(1));
assert_eq!(IBig::from(-48).trailing_ones(), Some(0));
assert_eq!(IBig::from(-0b101000001).trailing_ones(), Some(6));
assert_eq!(IBig::NEG_ONE.trailing_ones(), None);
§Availability

Const since Rust 1.64

Source§

impl IBig

Source

pub fn to_f32(&self) -> Approximation<f32, Sign>

Convert to f32.

Round to nearest, breaking ties to even last bit. The returned approximation is exact if the integer is exactly representable by f32, otherwise the error field of the approximation contains the sign of result - self.

§Examples
assert_eq!(IBig::from(-134).to_f32().value(), -134.0f32);
Source

pub fn to_f64(&self) -> Approximation<f64, Sign>

Convert to f64.

Round to nearest, breaking ties to even last bit. The returned approximation is exact if the integer is exactly representable by f64, otherwise the error field of the approximation contains the sign of result - self.

§Examples
assert_eq!(IBig::from(-134).to_f64().value(), -134.0f64);
Source§

impl IBig

Source

pub fn is_multiple_of(&self, divisor: &Self) -> bool

Determine whether the integer is perfectly divisible by the divisor.

§Examples
let a = IBig::from(24);
let b = IBig::from(-6);
assert!(a.is_multiple_of(&b));
§Panics

Panics if the divisor is zero.

Source

pub const fn is_multiple_of_const(&self, divisor: DoubleWord) -> bool

A const version of IBig::is_multiple_of, but only accepts DoubleWord divisors.

§Availability

Since Rust 1.64

Source§

impl IBig

Source

pub fn in_radix(&self, radix: u32) -> InRadix<'_>

Representation in a given radix.

§Panics

Panics if radix is not between 2 and 36 inclusive.

§Examples
assert_eq!(format!("{}", IBig::from(-83).in_radix(3)), "-10002");
assert_eq!(format!("{:010}", IBig::from(-35).in_radix(36)), "-00000000z");
Source§

impl IBig

Source

pub const ZERO: Self

IBig with value 0

Source

pub const ONE: Self

IBig with value 1

Source

pub const NEG_ONE: Self

IBig with value -1

Source

pub fn as_sign_words(&self) -> (Sign, &[Word])

Get the raw representation in Words.

If the number is zero, then empty slice will be returned.

§Examples
assert_eq!(IBig::ZERO.as_sign_words(), (Sign::Positive, &[] as &[_]));
assert_eq!(IBig::NEG_ONE.as_sign_words().0, Sign::Negative);
assert_eq!(IBig::NEG_ONE.as_sign_words().1, &[1]);
Source

pub const fn sign(&self) -> Sign

Get the sign of the number. Zero value has a positive sign.

§Examples
assert_eq!(IBig::ZERO.sign(), Sign::Positive);
assert_eq!(IBig::from(2).sign(), Sign::Positive);
assert_eq!(IBig::from(-3).sign(), Sign::Negative);
Source

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

Convert the IBig into its Sign and UBig magnitude

§Examples
assert_eq!(IBig::ZERO.into_parts(), (Sign::Positive, UBig::ZERO));
assert_eq!(IBig::ONE.into_parts(), (Sign::Positive, UBig::ONE));
assert_eq!(IBig::NEG_ONE.into_parts(), (Sign::Negative, UBig::ONE));
Source

pub fn from_parts(sign: Sign, magnitude: UBig) -> Self

Create an IBig from the Sign and UBig magnitude

§Examples
assert_eq!(IBig::from_parts(Sign::Positive, UBig::ZERO), IBig::ZERO);
assert_eq!(IBig::from_parts(Sign::Positive, UBig::ONE), IBig::ONE);
assert_eq!(IBig::from_parts(Sign::Negative, UBig::ONE), IBig::NEG_ONE);
Source

pub const fn from_parts_const(sign: Sign, dword: DoubleWord) -> Self

Create an IBig in a const context.

The magnitude is limited to a DoubleWord.

§Examples
const ONE: IBig = IBig::from_parts_const(Sign::Positive, 1);
assert_eq!(ONE, IBig::ONE);
const NEG_ONE: IBig = IBig::from_parts_const(Sign::Negative, 1);
assert_eq!(NEG_ONE, IBig::NEG_ONE);
Source

pub const fn is_zero(&self) -> bool

Check whether the number is 0

§Examples
assert!(IBig::ZERO.is_zero());
assert!(!IBig::ONE.is_zero());
Source

pub const fn is_one(&self) -> bool

Check whether the number is 1

§Examples
assert!(!IBig::ZERO.is_one());
assert!(IBig::ONE.is_one());
Source§

impl IBig

Source

pub fn ilog(&self, base: &UBig) -> usize

Calculate the (truncated) logarithm of the magnitude of IBig

This function could takes a long time when the integer is very large. In applications where an exact result is not necessary, log2_bounds could be used.

§Panics

Panics if the number is 0, or the base is 0 or 1

§Examples
let base = UBig::from(3u8);
assert_eq!(IBig::from(-81).ilog(&base), 4);
assert_eq!(IBig::from(-1000).ilog(&base), 6);
Source§

impl IBig

Source

pub fn sqr(&self) -> UBig

Compute the square of the number (self * self).

§Examples
assert_eq!(IBig::from(-3).sqr(), UBig::from(9u8));
Source

pub fn cubic(&self) -> IBig

Compute the cubic of the number (self * self * self).

§Examples
assert_eq!(IBig::from(-3).cubic(), IBig::from(-27));
Source§

impl IBig

Source

pub fn from_str_radix(src: &str, radix: u32) -> Result<IBig, ParseError>

Convert a string in a given base to IBig.

The string may contain a + or - prefix. Digits 10-35 are represented by a-z or A-Z.

§Examples
assert_eq!(IBig::from_str_radix("-7ab", 32)?, IBig::from(-7499));
Source

pub fn from_str_with_radix_prefix(src: &str) -> Result<(IBig, u32), ParseError>

Convert a string with an optional radix prefix to IBig, return the parsed integer and radix.

It’s equivalent to IBig::from_str_with_radix_default with 10 as the default radix.

Source

pub fn from_str_with_radix_default( src: &str, default_radix: u32, ) -> Result<(IBig, u32), ParseError>

Convert a string with an optional radix prefix to IBig, return the parsed integer and radix. If no prefix is present, then the default radix input will be used for parsing.

src may contain an ‘+’ or - prefix before the radix prefix.

Allowed prefixes: 0b for binary, 0o for octal, 0x for hexadecimal.

§Examples
assert_eq!(IBig::from_str_with_radix_default("+0o17", 10)?, (IBig::from(0o17), 8));
assert_eq!(IBig::from_str_with_radix_default("-0x1f", 10)?.0, IBig::from(-0x1f));
Source§

impl IBig

Source

pub fn pow(&self, exp: usize) -> IBig

Raises self to the power of exp.

§Examples
assert_eq!(IBig::from(-3).pow(3), IBig::from(-27));
Source§

impl IBig

Source

pub fn nth_root(&self, n: usize) -> IBig

Calculate the nth-root of the integer rounding towards zero

§Examples
assert_eq!(IBig::from(4).nth_root(2), IBig::from(2));
assert_eq!(IBig::from(-4).nth_root(3), IBig::from(-1));
assert_eq!(IBig::from(-1024).nth_root(5), IBig::from(-4));
§Panics

If n is zero, or if n is even when the integer is negative.

Source§

impl IBig

Source

pub const fn signum(&self) -> IBig

A number representing the sign of self.

§Examples
assert_eq!(IBig::from(-500).signum(), IBig::from(-1));

Trait Implementations§

Source§

impl Abs for &IBig

Source§

impl Abs for IBig

Source§

impl AbsEq<IBig> for UBig

Source§

fn abs_eq(&self, rhs: &IBig) -> bool

Source§

impl AbsEq<UBig> for IBig

Source§

fn abs_eq(&self, rhs: &UBig) -> bool

Source§

impl AbsEq for IBig

Source§

fn abs_eq(&self, rhs: &Self) -> bool

Source§

impl AbsOrd<IBig> for UBig

Source§

fn abs_cmp(&self, rhs: &IBig) -> Ordering

Source§

impl AbsOrd<UBig> for IBig

Source§

fn abs_cmp(&self, rhs: &UBig) -> Ordering

Source§

impl AbsOrd for IBig

Source§

fn abs_cmp(&self, rhs: &Self) -> Ordering

Source§

impl<'l, 'r> Add<&'r IBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r IBig> for &'l UBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r IBig> for &'l i128

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r IBig> for &'l i16

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r IBig> for &'l i32

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r IBig> for &'l i64

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r IBig> for &'l i8

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r IBig> for &'l isize

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r IBig> for &'l u128

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r IBig> for &'l u16

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r IBig> for &'l u32

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r IBig> for &'l u64

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r IBig> for &'l u8

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r IBig> for &'l usize

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r IBig> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r IBig> for UBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r IBig> for i128

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r IBig> for i16

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r IBig> for i32

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r IBig> for i64

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r IBig> for i8

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r IBig> for isize

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r IBig> for u128

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r IBig> for u16

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r IBig> for u32

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r IBig> for u64

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r IBig> for u8

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r IBig> for usize

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r UBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UBig) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r UBig> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &UBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r i128> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &i128) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r i128> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &i128) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r i16> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &i16) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r i16> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &i16) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r i32> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &i32) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r i32> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &i32) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r i64> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &i64) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r i64> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &i64) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r i8> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &i8) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r i8> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &i8) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r isize> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &isize) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r isize> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &isize) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r u128> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &u128) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r u128> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &u128) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r u16> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &u16) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r u16> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &u16) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r u32> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &u32) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r u32> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &u32) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r u64> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &u64) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r u64> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &u64) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r u8> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &u8) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r u8> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &u8) -> IBig

Performs the + operation. Read more
Source§

impl<'l, 'r> Add<&'r usize> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &usize) -> IBig

Performs the + operation. Read more
Source§

impl<'r> Add<&'r usize> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &usize) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<IBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<IBig> for &'l UBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<IBig> for &'l i128

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<IBig> for &'l i16

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<IBig> for &'l i32

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<IBig> for &'l i64

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<IBig> for &'l i8

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<IBig> for &'l isize

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<IBig> for &'l u128

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<IBig> for &'l u16

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<IBig> for &'l u32

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<IBig> for &'l u64

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<IBig> for &'l u8

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<IBig> for &'l usize

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl Add<IBig> for UBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl Add<IBig> for i128

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl Add<IBig> for i16

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl Add<IBig> for i32

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl Add<IBig> for i64

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl Add<IBig> for i8

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl Add<IBig> for isize

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl Add<IBig> for u128

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl Add<IBig> for u16

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl Add<IBig> for u32

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl Add<IBig> for u64

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl Add<IBig> for u8

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl Add<IBig> for usize

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<UBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UBig) -> IBig

Performs the + operation. Read more
Source§

impl Add<UBig> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: UBig) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<i128> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i128) -> IBig

Performs the + operation. Read more
Source§

impl Add<i128> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i128) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<i16> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i16) -> IBig

Performs the + operation. Read more
Source§

impl Add<i16> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i16) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<i32> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i32) -> IBig

Performs the + operation. Read more
Source§

impl Add<i32> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i32) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<i64> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i64) -> IBig

Performs the + operation. Read more
Source§

impl Add<i64> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i64) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<i8> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i8) -> IBig

Performs the + operation. Read more
Source§

impl Add<i8> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i8) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<isize> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: isize) -> IBig

Performs the + operation. Read more
Source§

impl Add<isize> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: isize) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<u128> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u128) -> IBig

Performs the + operation. Read more
Source§

impl Add<u128> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u128) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<u16> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u16) -> IBig

Performs the + operation. Read more
Source§

impl Add<u16> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u16) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<u32> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u32) -> IBig

Performs the + operation. Read more
Source§

impl Add<u32> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u32) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<u64> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u64) -> IBig

Performs the + operation. Read more
Source§

impl Add<u64> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u64) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<u8> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u8) -> IBig

Performs the + operation. Read more
Source§

impl Add<u8> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u8) -> IBig

Performs the + operation. Read more
Source§

impl<'l> Add<usize> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: usize) -> IBig

Performs the + operation. Read more
Source§

impl Add<usize> for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: usize) -> IBig

Performs the + operation. Read more
Source§

impl Add for IBig

Source§

type Output = IBig

The resulting type after applying the + operator.
Source§

fn add(self, rhs: IBig) -> IBig

Performs the + operation. Read more
Source§

impl AddAssign<&IBig> for IBig

Source§

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

Performs the += operation. Read more
Source§

impl AddAssign<&UBig> for IBig

Source§

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

Performs the += operation. Read more
Source§

impl AddAssign<&i128> for IBig

Source§

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

Performs the += operation. Read more
Source§

impl AddAssign<&i16> for IBig

Source§

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

Performs the += operation. Read more
Source§

impl AddAssign<&i32> for IBig

Source§

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

Performs the += operation. Read more
Source§

impl AddAssign<&i64> for IBig

Source§

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

Performs the += operation. Read more
Source§

impl AddAssign<&i8> for IBig

Source§

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

Performs the += operation. Read more
Source§

impl AddAssign<&isize> for IBig

Source§

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

Performs the += operation. Read more
Source§

impl AddAssign<&u128> for IBig

Source§

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

Performs the += operation. Read more
Source§

impl AddAssign<&u16> for IBig

Source§

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

Performs the += operation. Read more
Source§

impl AddAssign<&u32> for IBig

Source§

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

Performs the += operation. Read more
Source§

impl AddAssign<&u64> for IBig

Source§

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

Performs the += operation. Read more
Source§

impl AddAssign<&u8> for IBig

Source§

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

Performs the += operation. Read more
Source§

impl AddAssign<&usize> for IBig

Source§

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

Performs the += operation. Read more
Source§

impl AddAssign<UBig> for IBig

Source§

fn add_assign(&mut self, rhs: UBig)

Performs the += operation. Read more
Source§

impl AddAssign<i128> for IBig

Source§

fn add_assign(&mut self, rhs: i128)

Performs the += operation. Read more
Source§

impl AddAssign<i16> for IBig

Source§

fn add_assign(&mut self, rhs: i16)

Performs the += operation. Read more
Source§

impl AddAssign<i32> for IBig

Source§

fn add_assign(&mut self, rhs: i32)

Performs the += operation. Read more
Source§

impl AddAssign<i64> for IBig

Source§

fn add_assign(&mut self, rhs: i64)

Performs the += operation. Read more
Source§

impl AddAssign<i8> for IBig

Source§

fn add_assign(&mut self, rhs: i8)

Performs the += operation. Read more
Source§

impl AddAssign<isize> for IBig

Source§

fn add_assign(&mut self, rhs: isize)

Performs the += operation. Read more
Source§

impl AddAssign<u128> for IBig

Source§

fn add_assign(&mut self, rhs: u128)

Performs the += operation. Read more
Source§

impl AddAssign<u16> for IBig

Source§

fn add_assign(&mut self, rhs: u16)

Performs the += operation. Read more
Source§

impl AddAssign<u32> for IBig

Source§

fn add_assign(&mut self, rhs: u32)

Performs the += operation. Read more
Source§

impl AddAssign<u64> for IBig

Source§

fn add_assign(&mut self, rhs: u64)

Performs the += operation. Read more
Source§

impl AddAssign<u8> for IBig

Source§

fn add_assign(&mut self, rhs: u8)

Performs the += operation. Read more
Source§

impl AddAssign<usize> for IBig

Source§

fn add_assign(&mut self, rhs: usize)

Performs the += operation. Read more
Source§

impl AddAssign for IBig

Source§

fn add_assign(&mut self, rhs: IBig)

Performs the += operation. Read more
Source§

impl Binary for IBig

Source§

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

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

impl<'l, 'r> BitAnd<&'r IBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &IBig) -> IBig

Performs the & operation. Read more
Source§

impl<'l, 'r> BitAnd<&'r IBig> for &'l i128

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &IBig) -> IBig

Performs the & operation. Read more
Source§

impl<'l, 'r> BitAnd<&'r IBig> for &'l i16

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &IBig) -> IBig

Performs the & operation. Read more
Source§

impl<'l, 'r> BitAnd<&'r IBig> for &'l i32

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &IBig) -> IBig

Performs the & operation. Read more
Source§

impl<'l, 'r> BitAnd<&'r IBig> for &'l i64

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &IBig) -> IBig

Performs the & operation. Read more
Source§

impl<'l, 'r> BitAnd<&'r IBig> for &'l i8

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &IBig) -> IBig

Performs the & operation. Read more
Source§

impl<'l, 'r> BitAnd<&'r IBig> for &'l isize

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &IBig) -> IBig

Performs the & operation. Read more
Source§

impl<'r> BitAnd<&'r IBig> for IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &IBig) -> IBig

Performs the & operation. Read more
Source§

impl<'r> BitAnd<&'r IBig> for i128

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &IBig) -> IBig

Performs the & operation. Read more
Source§

impl<'r> BitAnd<&'r IBig> for i16

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &IBig) -> IBig

Performs the & operation. Read more
Source§

impl<'r> BitAnd<&'r IBig> for i32

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &IBig) -> IBig

Performs the & operation. Read more
Source§

impl<'r> BitAnd<&'r IBig> for i64

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &IBig) -> IBig

Performs the & operation. Read more
Source§

impl<'r> BitAnd<&'r IBig> for i8

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &IBig) -> IBig

Performs the & operation. Read more
Source§

impl<'r> BitAnd<&'r IBig> for isize

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &IBig) -> IBig

Performs the & operation. Read more
Source§

impl<'l, 'r> BitAnd<&'r i128> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &i128) -> IBig

Performs the & operation. Read more
Source§

impl<'r> BitAnd<&'r i128> for IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &i128) -> IBig

Performs the & operation. Read more
Source§

impl<'l, 'r> BitAnd<&'r i16> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &i16) -> IBig

Performs the & operation. Read more
Source§

impl<'r> BitAnd<&'r i16> for IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &i16) -> IBig

Performs the & operation. Read more
Source§

impl<'l, 'r> BitAnd<&'r i32> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &i32) -> IBig

Performs the & operation. Read more
Source§

impl<'r> BitAnd<&'r i32> for IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &i32) -> IBig

Performs the & operation. Read more
Source§

impl<'l, 'r> BitAnd<&'r i64> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &i64) -> IBig

Performs the & operation. Read more
Source§

impl<'r> BitAnd<&'r i64> for IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &i64) -> IBig

Performs the & operation. Read more
Source§

impl<'l, 'r> BitAnd<&'r i8> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &i8) -> IBig

Performs the & operation. Read more
Source§

impl<'r> BitAnd<&'r i8> for IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &i8) -> IBig

Performs the & operation. Read more
Source§

impl<'l, 'r> BitAnd<&'r isize> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &isize) -> IBig

Performs the & operation. Read more
Source§

impl<'r> BitAnd<&'r isize> for IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &isize) -> IBig

Performs the & operation. Read more
Source§

impl<'l> BitAnd<IBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: IBig) -> IBig

Performs the & operation. Read more
Source§

impl<'l> BitAnd<IBig> for &'l i128

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: IBig) -> IBig

Performs the & operation. Read more
Source§

impl<'l> BitAnd<IBig> for &'l i16

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: IBig) -> IBig

Performs the & operation. Read more
Source§

impl<'l> BitAnd<IBig> for &'l i32

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: IBig) -> IBig

Performs the & operation. Read more
Source§

impl<'l> BitAnd<IBig> for &'l i64

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: IBig) -> IBig

Performs the & operation. Read more
Source§

impl<'l> BitAnd<IBig> for &'l i8

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: IBig) -> IBig

Performs the & operation. Read more
Source§

impl<'l> BitAnd<IBig> for &'l isize

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: IBig) -> IBig

Performs the & operation. Read more
Source§

impl BitAnd<IBig> for i128

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: IBig) -> IBig

Performs the & operation. Read more
Source§

impl BitAnd<IBig> for i16

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: IBig) -> IBig

Performs the & operation. Read more
Source§

impl BitAnd<IBig> for i32

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: IBig) -> IBig

Performs the & operation. Read more
Source§

impl BitAnd<IBig> for i64

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: IBig) -> IBig

Performs the & operation. Read more
Source§

impl BitAnd<IBig> for i8

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: IBig) -> IBig

Performs the & operation. Read more
Source§

impl BitAnd<IBig> for isize

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: IBig) -> IBig

Performs the & operation. Read more
Source§

impl<'l> BitAnd<i128> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: i128) -> IBig

Performs the & operation. Read more
Source§

impl BitAnd<i128> for IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: i128) -> IBig

Performs the & operation. Read more
Source§

impl<'l> BitAnd<i16> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: i16) -> IBig

Performs the & operation. Read more
Source§

impl BitAnd<i16> for IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: i16) -> IBig

Performs the & operation. Read more
Source§

impl<'l> BitAnd<i32> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: i32) -> IBig

Performs the & operation. Read more
Source§

impl BitAnd<i32> for IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: i32) -> IBig

Performs the & operation. Read more
Source§

impl<'l> BitAnd<i64> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: i64) -> IBig

Performs the & operation. Read more
Source§

impl BitAnd<i64> for IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: i64) -> IBig

Performs the & operation. Read more
Source§

impl<'l> BitAnd<i8> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: i8) -> IBig

Performs the & operation. Read more
Source§

impl BitAnd<i8> for IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: i8) -> IBig

Performs the & operation. Read more
Source§

impl<'l> BitAnd<isize> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: isize) -> IBig

Performs the & operation. Read more
Source§

impl BitAnd<isize> for IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: isize) -> IBig

Performs the & operation. Read more
Source§

impl BitAnd for IBig

Source§

type Output = IBig

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: IBig) -> IBig

Performs the & operation. Read more
Source§

impl BitAndAssign<&IBig> for IBig

Source§

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

Performs the &= operation. Read more
Source§

impl BitAndAssign<&i128> for IBig

Source§

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

Performs the &= operation. Read more
Source§

impl BitAndAssign<&i16> for IBig

Source§

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

Performs the &= operation. Read more
Source§

impl BitAndAssign<&i32> for IBig

Source§

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

Performs the &= operation. Read more
Source§

impl BitAndAssign<&i64> for IBig

Source§

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

Performs the &= operation. Read more
Source§

impl BitAndAssign<&i8> for IBig

Source§

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

Performs the &= operation. Read more
Source§

impl BitAndAssign<&isize> for IBig

Source§

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

Performs the &= operation. Read more
Source§

impl BitAndAssign<i128> for IBig

Source§

fn bitand_assign(&mut self, rhs: i128)

Performs the &= operation. Read more
Source§

impl BitAndAssign<i16> for IBig

Source§

fn bitand_assign(&mut self, rhs: i16)

Performs the &= operation. Read more
Source§

impl BitAndAssign<i32> for IBig

Source§

fn bitand_assign(&mut self, rhs: i32)

Performs the &= operation. Read more
Source§

impl BitAndAssign<i64> for IBig

Source§

fn bitand_assign(&mut self, rhs: i64)

Performs the &= operation. Read more
Source§

impl BitAndAssign<i8> for IBig

Source§

fn bitand_assign(&mut self, rhs: i8)

Performs the &= operation. Read more
Source§

impl BitAndAssign<isize> for IBig

Source§

fn bitand_assign(&mut self, rhs: isize)

Performs the &= operation. Read more
Source§

impl BitAndAssign for IBig

Source§

fn bitand_assign(&mut self, rhs: IBig)

Performs the &= operation. Read more
Source§

impl<'l, 'r> BitOr<&'r IBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &IBig) -> IBig

Performs the | operation. Read more
Source§

impl<'l, 'r> BitOr<&'r IBig> for &'l i128

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &IBig) -> IBig

Performs the | operation. Read more
Source§

impl<'l, 'r> BitOr<&'r IBig> for &'l i16

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &IBig) -> IBig

Performs the | operation. Read more
Source§

impl<'l, 'r> BitOr<&'r IBig> for &'l i32

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &IBig) -> IBig

Performs the | operation. Read more
Source§

impl<'l, 'r> BitOr<&'r IBig> for &'l i64

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &IBig) -> IBig

Performs the | operation. Read more
Source§

impl<'l, 'r> BitOr<&'r IBig> for &'l i8

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &IBig) -> IBig

Performs the | operation. Read more
Source§

impl<'l, 'r> BitOr<&'r IBig> for &'l isize

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &IBig) -> IBig

Performs the | operation. Read more
Source§

impl<'r> BitOr<&'r IBig> for IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &IBig) -> IBig

Performs the | operation. Read more
Source§

impl<'r> BitOr<&'r IBig> for i128

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &IBig) -> IBig

Performs the | operation. Read more
Source§

impl<'r> BitOr<&'r IBig> for i16

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &IBig) -> IBig

Performs the | operation. Read more
Source§

impl<'r> BitOr<&'r IBig> for i32

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &IBig) -> IBig

Performs the | operation. Read more
Source§

impl<'r> BitOr<&'r IBig> for i64

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &IBig) -> IBig

Performs the | operation. Read more
Source§

impl<'r> BitOr<&'r IBig> for i8

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &IBig) -> IBig

Performs the | operation. Read more
Source§

impl<'r> BitOr<&'r IBig> for isize

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &IBig) -> IBig

Performs the | operation. Read more
Source§

impl<'l, 'r> BitOr<&'r i128> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &i128) -> IBig

Performs the | operation. Read more
Source§

impl<'r> BitOr<&'r i128> for IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &i128) -> IBig

Performs the | operation. Read more
Source§

impl<'l, 'r> BitOr<&'r i16> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &i16) -> IBig

Performs the | operation. Read more
Source§

impl<'r> BitOr<&'r i16> for IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &i16) -> IBig

Performs the | operation. Read more
Source§

impl<'l, 'r> BitOr<&'r i32> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &i32) -> IBig

Performs the | operation. Read more
Source§

impl<'r> BitOr<&'r i32> for IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &i32) -> IBig

Performs the | operation. Read more
Source§

impl<'l, 'r> BitOr<&'r i64> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &i64) -> IBig

Performs the | operation. Read more
Source§

impl<'r> BitOr<&'r i64> for IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &i64) -> IBig

Performs the | operation. Read more
Source§

impl<'l, 'r> BitOr<&'r i8> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &i8) -> IBig

Performs the | operation. Read more
Source§

impl<'r> BitOr<&'r i8> for IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &i8) -> IBig

Performs the | operation. Read more
Source§

impl<'l, 'r> BitOr<&'r isize> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &isize) -> IBig

Performs the | operation. Read more
Source§

impl<'r> BitOr<&'r isize> for IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &isize) -> IBig

Performs the | operation. Read more
Source§

impl<'l> BitOr<IBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: IBig) -> IBig

Performs the | operation. Read more
Source§

impl<'l> BitOr<IBig> for &'l i128

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: IBig) -> IBig

Performs the | operation. Read more
Source§

impl<'l> BitOr<IBig> for &'l i16

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: IBig) -> IBig

Performs the | operation. Read more
Source§

impl<'l> BitOr<IBig> for &'l i32

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: IBig) -> IBig

Performs the | operation. Read more
Source§

impl<'l> BitOr<IBig> for &'l i64

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: IBig) -> IBig

Performs the | operation. Read more
Source§

impl<'l> BitOr<IBig> for &'l i8

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: IBig) -> IBig

Performs the | operation. Read more
Source§

impl<'l> BitOr<IBig> for &'l isize

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: IBig) -> IBig

Performs the | operation. Read more
Source§

impl BitOr<IBig> for i128

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: IBig) -> IBig

Performs the | operation. Read more
Source§

impl BitOr<IBig> for i16

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: IBig) -> IBig

Performs the | operation. Read more
Source§

impl BitOr<IBig> for i32

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: IBig) -> IBig

Performs the | operation. Read more
Source§

impl BitOr<IBig> for i64

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: IBig) -> IBig

Performs the | operation. Read more
Source§

impl BitOr<IBig> for i8

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: IBig) -> IBig

Performs the | operation. Read more
Source§

impl BitOr<IBig> for isize

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: IBig) -> IBig

Performs the | operation. Read more
Source§

impl<'l> BitOr<i128> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: i128) -> IBig

Performs the | operation. Read more
Source§

impl BitOr<i128> for IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: i128) -> IBig

Performs the | operation. Read more
Source§

impl<'l> BitOr<i16> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: i16) -> IBig

Performs the | operation. Read more
Source§

impl BitOr<i16> for IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: i16) -> IBig

Performs the | operation. Read more
Source§

impl<'l> BitOr<i32> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: i32) -> IBig

Performs the | operation. Read more
Source§

impl BitOr<i32> for IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: i32) -> IBig

Performs the | operation. Read more
Source§

impl<'l> BitOr<i64> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: i64) -> IBig

Performs the | operation. Read more
Source§

impl BitOr<i64> for IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: i64) -> IBig

Performs the | operation. Read more
Source§

impl<'l> BitOr<i8> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: i8) -> IBig

Performs the | operation. Read more
Source§

impl BitOr<i8> for IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: i8) -> IBig

Performs the | operation. Read more
Source§

impl<'l> BitOr<isize> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: isize) -> IBig

Performs the | operation. Read more
Source§

impl BitOr<isize> for IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: isize) -> IBig

Performs the | operation. Read more
Source§

impl BitOr for IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: IBig) -> IBig

Performs the | operation. Read more
Source§

impl BitOrAssign<&IBig> for IBig

Source§

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

Performs the |= operation. Read more
Source§

impl BitOrAssign<&i128> for IBig

Source§

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

Performs the |= operation. Read more
Source§

impl BitOrAssign<&i16> for IBig

Source§

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

Performs the |= operation. Read more
Source§

impl BitOrAssign<&i32> for IBig

Source§

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

Performs the |= operation. Read more
Source§

impl BitOrAssign<&i64> for IBig

Source§

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

Performs the |= operation. Read more
Source§

impl BitOrAssign<&i8> for IBig

Source§

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

Performs the |= operation. Read more
Source§

impl BitOrAssign<&isize> for IBig

Source§

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

Performs the |= operation. Read more
Source§

impl BitOrAssign<i128> for IBig

Source§

fn bitor_assign(&mut self, rhs: i128)

Performs the |= operation. Read more
Source§

impl BitOrAssign<i16> for IBig

Source§

fn bitor_assign(&mut self, rhs: i16)

Performs the |= operation. Read more
Source§

impl BitOrAssign<i32> for IBig

Source§

fn bitor_assign(&mut self, rhs: i32)

Performs the |= operation. Read more
Source§

impl BitOrAssign<i64> for IBig

Source§

fn bitor_assign(&mut self, rhs: i64)

Performs the |= operation. Read more
Source§

impl BitOrAssign<i8> for IBig

Source§

fn bitor_assign(&mut self, rhs: i8)

Performs the |= operation. Read more
Source§

impl BitOrAssign<isize> for IBig

Source§

fn bitor_assign(&mut self, rhs: isize)

Performs the |= operation. Read more
Source§

impl BitOrAssign for IBig

Source§

fn bitor_assign(&mut self, rhs: IBig)

Performs the |= operation. Read more
Source§

impl BitTest for IBig

Source§

fn bit(&self, n: usize) -> bool

Returns true if the n-th bit is set in its two’s complement binary representation, n starts from 0.
Source§

fn bit_len(&self) -> usize

Effective bit length of the binary representation. Read more
Source§

impl<'l, 'r> BitXor<&'r IBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl<'l, 'r> BitXor<&'r IBig> for &'l i128

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl<'l, 'r> BitXor<&'r IBig> for &'l i16

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl<'l, 'r> BitXor<&'r IBig> for &'l i32

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl<'l, 'r> BitXor<&'r IBig> for &'l i64

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl<'l, 'r> BitXor<&'r IBig> for &'l i8

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl<'l, 'r> BitXor<&'r IBig> for &'l isize

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl<'r> BitXor<&'r IBig> for IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl<'r> BitXor<&'r IBig> for i128

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl<'r> BitXor<&'r IBig> for i16

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl<'r> BitXor<&'r IBig> for i32

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl<'r> BitXor<&'r IBig> for i64

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl<'r> BitXor<&'r IBig> for i8

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl<'r> BitXor<&'r IBig> for isize

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl<'l, 'r> BitXor<&'r i128> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &i128) -> IBig

Performs the ^ operation. Read more
Source§

impl<'r> BitXor<&'r i128> for IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &i128) -> IBig

Performs the ^ operation. Read more
Source§

impl<'l, 'r> BitXor<&'r i16> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &i16) -> IBig

Performs the ^ operation. Read more
Source§

impl<'r> BitXor<&'r i16> for IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &i16) -> IBig

Performs the ^ operation. Read more
Source§

impl<'l, 'r> BitXor<&'r i32> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &i32) -> IBig

Performs the ^ operation. Read more
Source§

impl<'r> BitXor<&'r i32> for IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &i32) -> IBig

Performs the ^ operation. Read more
Source§

impl<'l, 'r> BitXor<&'r i64> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &i64) -> IBig

Performs the ^ operation. Read more
Source§

impl<'r> BitXor<&'r i64> for IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &i64) -> IBig

Performs the ^ operation. Read more
Source§

impl<'l, 'r> BitXor<&'r i8> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &i8) -> IBig

Performs the ^ operation. Read more
Source§

impl<'r> BitXor<&'r i8> for IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &i8) -> IBig

Performs the ^ operation. Read more
Source§

impl<'l, 'r> BitXor<&'r isize> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &isize) -> IBig

Performs the ^ operation. Read more
Source§

impl<'r> BitXor<&'r isize> for IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &isize) -> IBig

Performs the ^ operation. Read more
Source§

impl<'l> BitXor<IBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl<'l> BitXor<IBig> for &'l i128

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl<'l> BitXor<IBig> for &'l i16

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl<'l> BitXor<IBig> for &'l i32

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl<'l> BitXor<IBig> for &'l i64

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl<'l> BitXor<IBig> for &'l i8

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl<'l> BitXor<IBig> for &'l isize

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl BitXor<IBig> for i128

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl BitXor<IBig> for i16

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl BitXor<IBig> for i32

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl BitXor<IBig> for i64

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl BitXor<IBig> for i8

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl BitXor<IBig> for isize

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl<'l> BitXor<i128> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: i128) -> IBig

Performs the ^ operation. Read more
Source§

impl BitXor<i128> for IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: i128) -> IBig

Performs the ^ operation. Read more
Source§

impl<'l> BitXor<i16> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: i16) -> IBig

Performs the ^ operation. Read more
Source§

impl BitXor<i16> for IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: i16) -> IBig

Performs the ^ operation. Read more
Source§

impl<'l> BitXor<i32> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: i32) -> IBig

Performs the ^ operation. Read more
Source§

impl BitXor<i32> for IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: i32) -> IBig

Performs the ^ operation. Read more
Source§

impl<'l> BitXor<i64> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: i64) -> IBig

Performs the ^ operation. Read more
Source§

impl BitXor<i64> for IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: i64) -> IBig

Performs the ^ operation. Read more
Source§

impl<'l> BitXor<i8> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: i8) -> IBig

Performs the ^ operation. Read more
Source§

impl BitXor<i8> for IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: i8) -> IBig

Performs the ^ operation. Read more
Source§

impl<'l> BitXor<isize> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: isize) -> IBig

Performs the ^ operation. Read more
Source§

impl BitXor<isize> for IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: isize) -> IBig

Performs the ^ operation. Read more
Source§

impl BitXor for IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: IBig) -> IBig

Performs the ^ operation. Read more
Source§

impl BitXorAssign<&IBig> for IBig

Source§

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

Performs the ^= operation. Read more
Source§

impl BitXorAssign<&i128> for IBig

Source§

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

Performs the ^= operation. Read more
Source§

impl BitXorAssign<&i16> for IBig

Source§

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

Performs the ^= operation. Read more
Source§

impl BitXorAssign<&i32> for IBig

Source§

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

Performs the ^= operation. Read more
Source§

impl BitXorAssign<&i64> for IBig

Source§

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

Performs the ^= operation. Read more
Source§

impl BitXorAssign<&i8> for IBig

Source§

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

Performs the ^= operation. Read more
Source§

impl BitXorAssign<&isize> for IBig

Source§

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

Performs the ^= operation. Read more
Source§

impl BitXorAssign<i128> for IBig

Source§

fn bitxor_assign(&mut self, rhs: i128)

Performs the ^= operation. Read more
Source§

impl BitXorAssign<i16> for IBig

Source§

fn bitxor_assign(&mut self, rhs: i16)

Performs the ^= operation. Read more
Source§

impl BitXorAssign<i32> for IBig

Source§

fn bitxor_assign(&mut self, rhs: i32)

Performs the ^= operation. Read more
Source§

impl BitXorAssign<i64> for IBig

Source§

fn bitxor_assign(&mut self, rhs: i64)

Performs the ^= operation. Read more
Source§

impl BitXorAssign<i8> for IBig

Source§

fn bitxor_assign(&mut self, rhs: i8)

Performs the ^= operation. Read more
Source§

impl BitXorAssign<isize> for IBig

Source§

fn bitxor_assign(&mut self, rhs: isize)

Performs the ^= operation. Read more
Source§

impl BitXorAssign for IBig

Source§

fn bitxor_assign(&mut self, rhs: IBig)

Performs the ^= operation. Read more
Source§

impl Clone for IBig

Source§

fn clone(&self) -> IBig

Returns a duplicate of the value. Read more
Source§

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

Performs copy-assignment from source. Read more
Source§

impl CubicRoot for IBig

Source§

impl Debug for IBig

Source§

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

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

impl Default for IBig

Source§

fn default() -> IBig

Default value: 0.

Source§

impl<'de> Deserialize<'de> for IBig

Source§

fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for IBig

Source§

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

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

impl<'a> Distribution<IBig> for UniformBelow<'a>

Source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> IBig

Generate a random value of T, using rng as the source of randomness.
Source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>
where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
Source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>
where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
Source§

impl Distribution<IBig> for UniformBits

Source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> IBig

Generate a random value of T, using rng as the source of randomness.
Source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>
where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
Source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>
where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
Source§

impl<'l, 'r> Div<&'r ConstDivisor> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &ConstDivisor) -> IBig

Performs the / operation. Read more
Source§

impl<'r> Div<&'r ConstDivisor> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &ConstDivisor) -> IBig

Performs the / operation. Read more
Source§

impl<'l, 'r> Div<&'r IBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &IBig) -> IBig

Performs the / operation. Read more
Source§

impl<'l, 'r> Div<&'r IBig> for &'l UBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &IBig) -> IBig

Performs the / operation. Read more
Source§

impl<'r> Div<&'r IBig> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &IBig) -> IBig

Performs the / operation. Read more
Source§

impl<'r> Div<&'r IBig> for UBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &IBig) -> IBig

Performs the / operation. Read more
Source§

impl<'l, 'r> Div<&'r UBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UBig) -> IBig

Performs the / operation. Read more
Source§

impl<'r> Div<&'r UBig> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &UBig) -> IBig

Performs the / operation. Read more
Source§

impl<'l, 'r> Div<&'r i128> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &i128) -> IBig

Performs the / operation. Read more
Source§

impl<'r> Div<&'r i128> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &i128) -> IBig

Performs the / operation. Read more
Source§

impl<'l, 'r> Div<&'r i16> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &i16) -> IBig

Performs the / operation. Read more
Source§

impl<'r> Div<&'r i16> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &i16) -> IBig

Performs the / operation. Read more
Source§

impl<'l, 'r> Div<&'r i32> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &i32) -> IBig

Performs the / operation. Read more
Source§

impl<'r> Div<&'r i32> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &i32) -> IBig

Performs the / operation. Read more
Source§

impl<'l, 'r> Div<&'r i64> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &i64) -> IBig

Performs the / operation. Read more
Source§

impl<'r> Div<&'r i64> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &i64) -> IBig

Performs the / operation. Read more
Source§

impl<'l, 'r> Div<&'r i8> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &i8) -> IBig

Performs the / operation. Read more
Source§

impl<'r> Div<&'r i8> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &i8) -> IBig

Performs the / operation. Read more
Source§

impl<'l, 'r> Div<&'r isize> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &isize) -> IBig

Performs the / operation. Read more
Source§

impl<'r> Div<&'r isize> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &isize) -> IBig

Performs the / operation. Read more
Source§

impl<'l, 'r> Div<&'r u128> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &u128) -> IBig

Performs the / operation. Read more
Source§

impl<'r> Div<&'r u128> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &u128) -> IBig

Performs the / operation. Read more
Source§

impl<'l, 'r> Div<&'r u16> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &u16) -> IBig

Performs the / operation. Read more
Source§

impl<'r> Div<&'r u16> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &u16) -> IBig

Performs the / operation. Read more
Source§

impl<'l, 'r> Div<&'r u32> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &u32) -> IBig

Performs the / operation. Read more
Source§

impl<'r> Div<&'r u32> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &u32) -> IBig

Performs the / operation. Read more
Source§

impl<'l, 'r> Div<&'r u64> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &u64) -> IBig

Performs the / operation. Read more
Source§

impl<'r> Div<&'r u64> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &u64) -> IBig

Performs the / operation. Read more
Source§

impl<'l, 'r> Div<&'r u8> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &u8) -> IBig

Performs the / operation. Read more
Source§

impl<'r> Div<&'r u8> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &u8) -> IBig

Performs the / operation. Read more
Source§

impl<'l, 'r> Div<&'r usize> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &usize) -> IBig

Performs the / operation. Read more
Source§

impl<'r> Div<&'r usize> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &usize) -> IBig

Performs the / operation. Read more
Source§

impl<'l> Div<IBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: IBig) -> IBig

Performs the / operation. Read more
Source§

impl<'l> Div<IBig> for &'l UBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: IBig) -> IBig

Performs the / operation. Read more
Source§

impl Div<IBig> for UBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: IBig) -> IBig

Performs the / operation. Read more
Source§

impl<'l> Div<UBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UBig) -> IBig

Performs the / operation. Read more
Source§

impl Div<UBig> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: UBig) -> IBig

Performs the / operation. Read more
Source§

impl<'l> Div<i128> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i128) -> IBig

Performs the / operation. Read more
Source§

impl Div<i128> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i128) -> IBig

Performs the / operation. Read more
Source§

impl<'l> Div<i16> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i16) -> IBig

Performs the / operation. Read more
Source§

impl Div<i16> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i16) -> IBig

Performs the / operation. Read more
Source§

impl<'l> Div<i32> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i32) -> IBig

Performs the / operation. Read more
Source§

impl Div<i32> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i32) -> IBig

Performs the / operation. Read more
Source§

impl<'l> Div<i64> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i64) -> IBig

Performs the / operation. Read more
Source§

impl Div<i64> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i64) -> IBig

Performs the / operation. Read more
Source§

impl<'l> Div<i8> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i8) -> IBig

Performs the / operation. Read more
Source§

impl Div<i8> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i8) -> IBig

Performs the / operation. Read more
Source§

impl<'l> Div<isize> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: isize) -> IBig

Performs the / operation. Read more
Source§

impl Div<isize> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: isize) -> IBig

Performs the / operation. Read more
Source§

impl<'l> Div<u128> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u128) -> IBig

Performs the / operation. Read more
Source§

impl Div<u128> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u128) -> IBig

Performs the / operation. Read more
Source§

impl<'l> Div<u16> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u16) -> IBig

Performs the / operation. Read more
Source§

impl Div<u16> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u16) -> IBig

Performs the / operation. Read more
Source§

impl<'l> Div<u32> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u32) -> IBig

Performs the / operation. Read more
Source§

impl Div<u32> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u32) -> IBig

Performs the / operation. Read more
Source§

impl<'l> Div<u64> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u64) -> IBig

Performs the / operation. Read more
Source§

impl Div<u64> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u64) -> IBig

Performs the / operation. Read more
Source§

impl<'l> Div<u8> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u8) -> IBig

Performs the / operation. Read more
Source§

impl Div<u8> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u8) -> IBig

Performs the / operation. Read more
Source§

impl<'l> Div<usize> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: usize) -> IBig

Performs the / operation. Read more
Source§

impl Div<usize> for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: usize) -> IBig

Performs the / operation. Read more
Source§

impl Div for IBig

Source§

type Output = IBig

The resulting type after applying the / operator.
Source§

fn div(self, rhs: IBig) -> IBig

Performs the / operation. Read more
Source§

impl<'r> DivAssign<&'r ConstDivisor> for IBig

Source§

fn div_assign(&mut self, rhs: &'r ConstDivisor)

Performs the /= operation. Read more
Source§

impl DivAssign<&IBig> for IBig

Source§

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

Performs the /= operation. Read more
Source§

impl DivAssign<&UBig> for IBig

Source§

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

Performs the /= operation. Read more
Source§

impl DivAssign<&i128> for IBig

Source§

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

Performs the /= operation. Read more
Source§

impl DivAssign<&i16> for IBig

Source§

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

Performs the /= operation. Read more
Source§

impl DivAssign<&i32> for IBig

Source§

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

Performs the /= operation. Read more
Source§

impl DivAssign<&i64> for IBig

Source§

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

Performs the /= operation. Read more
Source§

impl DivAssign<&i8> for IBig

Source§

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

Performs the /= operation. Read more
Source§

impl DivAssign<&isize> for IBig

Source§

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

Performs the /= operation. Read more
Source§

impl DivAssign<&u128> for IBig

Source§

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

Performs the /= operation. Read more
Source§

impl DivAssign<&u16> for IBig

Source§

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

Performs the /= operation. Read more
Source§

impl DivAssign<&u32> for IBig

Source§

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

Performs the /= operation. Read more
Source§

impl DivAssign<&u64> for IBig

Source§

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

Performs the /= operation. Read more
Source§

impl DivAssign<&u8> for IBig

Source§

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

Performs the /= operation. Read more
Source§

impl DivAssign<&usize> for IBig

Source§

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

Performs the /= operation. Read more
Source§

impl DivAssign<UBig> for IBig

Source§

fn div_assign(&mut self, rhs: UBig)

Performs the /= operation. Read more
Source§

impl DivAssign<i128> for IBig

Source§

fn div_assign(&mut self, rhs: i128)

Performs the /= operation. Read more
Source§

impl DivAssign<i16> for IBig

Source§

fn div_assign(&mut self, rhs: i16)

Performs the /= operation. Read more
Source§

impl DivAssign<i32> for IBig

Source§

fn div_assign(&mut self, rhs: i32)

Performs the /= operation. Read more
Source§

impl DivAssign<i64> for IBig

Source§

fn div_assign(&mut self, rhs: i64)

Performs the /= operation. Read more
Source§

impl DivAssign<i8> for IBig

Source§

fn div_assign(&mut self, rhs: i8)

Performs the /= operation. Read more
Source§

impl DivAssign<isize> for IBig

Source§

fn div_assign(&mut self, rhs: isize)

Performs the /= operation. Read more
Source§

impl DivAssign<u128> for IBig

Source§

fn div_assign(&mut self, rhs: u128)

Performs the /= operation. Read more
Source§

impl DivAssign<u16> for IBig

Source§

fn div_assign(&mut self, rhs: u16)

Performs the /= operation. Read more
Source§

impl DivAssign<u32> for IBig

Source§

fn div_assign(&mut self, rhs: u32)

Performs the /= operation. Read more
Source§

impl DivAssign<u64> for IBig

Source§

fn div_assign(&mut self, rhs: u64)

Performs the /= operation. Read more
Source§

impl DivAssign<u8> for IBig

Source§

fn div_assign(&mut self, rhs: u8)

Performs the /= operation. Read more
Source§

impl DivAssign<usize> for IBig

Source§

fn div_assign(&mut self, rhs: usize)

Performs the /= operation. Read more
Source§

impl DivAssign for IBig

Source§

fn div_assign(&mut self, rhs: IBig)

Performs the /= operation. Read more
Source§

impl<'l, 'r> DivEuclid<&'r IBig> for &'l IBig

Source§

impl<'r> DivEuclid<&'r IBig> for IBig

Source§

impl<'l> DivEuclid<IBig> for &'l IBig

Source§

impl DivEuclid for IBig

Source§

impl<'l, 'r> DivRem<&'r ConstDivisor> for &'l IBig

Source§

impl<'r> DivRem<&'r ConstDivisor> for IBig

Source§

impl<'l, 'r> DivRem<&'r IBig> for &'l IBig

Source§

impl<'l, 'r> DivRem<&'r IBig> for &'l UBig

Source§

impl<'r> DivRem<&'r IBig> for IBig

Source§

impl<'r> DivRem<&'r IBig> for UBig

Source§

impl<'l, 'r> DivRem<&'r UBig> for &'l IBig

Source§

impl<'r> DivRem<&'r UBig> for IBig

Source§

impl<'l, 'r> DivRem<&'r i128> for &'l IBig

Source§

impl<'r> DivRem<&'r i128> for IBig

Source§

impl<'l, 'r> DivRem<&'r i16> for &'l IBig

Source§

impl<'r> DivRem<&'r i16> for IBig

Source§

impl<'l, 'r> DivRem<&'r i32> for &'l IBig

Source§

impl<'r> DivRem<&'r i32> for IBig

Source§

impl<'l, 'r> DivRem<&'r i64> for &'l IBig

Source§

impl<'r> DivRem<&'r i64> for IBig

Source§

impl<'l, 'r> DivRem<&'r i8> for &'l IBig

Source§

impl<'r> DivRem<&'r i8> for IBig

Source§

impl<'l, 'r> DivRem<&'r isize> for &'l IBig

Source§

impl<'r> DivRem<&'r isize> for IBig

Source§

impl<'l, 'r> DivRem<&'r u128> for &'l IBig

Source§

impl<'r> DivRem<&'r u128> for IBig

Source§

impl<'l, 'r> DivRem<&'r u16> for &'l IBig

Source§

impl<'r> DivRem<&'r u16> for IBig

Source§

impl<'l, 'r> DivRem<&'r u32> for &'l IBig

Source§

impl<'r> DivRem<&'r u32> for IBig

Source§

impl<'l, 'r> DivRem<&'r u64> for &'l IBig

Source§

impl<'r> DivRem<&'r u64> for IBig

Source§

impl<'l, 'r> DivRem<&'r u8> for &'l IBig

Source§

impl<'r> DivRem<&'r u8> for IBig

Source§

impl<'l, 'r> DivRem<&'r usize> for &'l IBig

Source§

impl<'r> DivRem<&'r usize> for IBig

Source§

impl<'l> DivRem<IBig> for &'l IBig

Source§

impl<'l> DivRem<IBig> for &'l UBig

Source§

impl DivRem<IBig> for UBig

Source§

impl<'l> DivRem<UBig> for &'l IBig

Source§

impl DivRem<UBig> for IBig

Source§

impl<'l> DivRem<i128> for &'l IBig

Source§

impl DivRem<i128> for IBig

Source§

impl<'l> DivRem<i16> for &'l IBig

Source§

impl DivRem<i16> for IBig

Source§

impl<'l> DivRem<i32> for &'l IBig

Source§

impl DivRem<i32> for IBig

Source§

impl<'l> DivRem<i64> for &'l IBig

Source§

impl DivRem<i64> for IBig

Source§

impl<'l> DivRem<i8> for &'l IBig

Source§

impl DivRem<i8> for IBig

Source§

impl<'l> DivRem<isize> for &'l IBig

Source§

impl DivRem<isize> for IBig

Source§

impl<'l> DivRem<u128> for &'l IBig

Source§

impl DivRem<u128> for IBig

Source§

impl<'l> DivRem<u16> for &'l IBig

Source§

impl DivRem<u16> for IBig

Source§

impl<'l> DivRem<u32> for &'l IBig

Source§

impl DivRem<u32> for IBig

Source§

impl<'l> DivRem<u64> for &'l IBig

Source§

impl DivRem<u64> for IBig

Source§

impl<'l> DivRem<u8> for &'l IBig

Source§

impl DivRem<u8> for IBig

Source§

impl<'l> DivRem<usize> for &'l IBig

Source§

impl DivRem<usize> for IBig

Source§

impl DivRem for IBig

Source§

impl<'r> DivRemAssign<&'r ConstDivisor> for IBig

Source§

impl DivRemAssign<&IBig> for IBig

Source§

type OutputRem = IBig

Source§

fn div_rem_assign(&mut self, rhs: &IBig) -> IBig

Source§

impl DivRemAssign<&i128> for IBig

Source§

type OutputRem = i128

Source§

fn div_rem_assign(&mut self, rhs: &i128) -> i128

Source§

impl DivRemAssign<&i16> for IBig

Source§

type OutputRem = i16

Source§

fn div_rem_assign(&mut self, rhs: &i16) -> i16

Source§

impl DivRemAssign<&i32> for IBig

Source§

type OutputRem = i32

Source§

fn div_rem_assign(&mut self, rhs: &i32) -> i32

Source§

impl DivRemAssign<&i64> for IBig

Source§

type OutputRem = i64

Source§

fn div_rem_assign(&mut self, rhs: &i64) -> i64

Source§

impl DivRemAssign<&i8> for IBig

Source§

type OutputRem = i8

Source§

fn div_rem_assign(&mut self, rhs: &i8) -> i8

Source§

impl DivRemAssign<&isize> for IBig

Source§

impl DivRemAssign<&u128> for IBig

Source§

type OutputRem = u128

Source§

fn div_rem_assign(&mut self, rhs: &u128) -> u128

Source§

impl DivRemAssign<&u16> for IBig

Source§

type OutputRem = u16

Source§

fn div_rem_assign(&mut self, rhs: &u16) -> u16

Source§

impl DivRemAssign<&u32> for IBig

Source§

type OutputRem = u32

Source§

fn div_rem_assign(&mut self, rhs: &u32) -> u32

Source§

impl DivRemAssign<&u64> for IBig

Source§

type OutputRem = u64

Source§

fn div_rem_assign(&mut self, rhs: &u64) -> u64

Source§

impl DivRemAssign<&u8> for IBig

Source§

type OutputRem = u8

Source§

fn div_rem_assign(&mut self, rhs: &u8) -> u8

Source§

impl DivRemAssign<&usize> for IBig

Source§

impl DivRemAssign<i128> for IBig

Source§

impl DivRemAssign<i16> for IBig

Source§

type OutputRem = i16

Source§

fn div_rem_assign(&mut self, rhs: i16) -> i16

Source§

impl DivRemAssign<i32> for IBig

Source§

type OutputRem = i32

Source§

fn div_rem_assign(&mut self, rhs: i32) -> i32

Source§

impl DivRemAssign<i64> for IBig

Source§

type OutputRem = i64

Source§

fn div_rem_assign(&mut self, rhs: i64) -> i64

Source§

impl DivRemAssign<i8> for IBig

Source§

type OutputRem = i8

Source§

fn div_rem_assign(&mut self, rhs: i8) -> i8

Source§

impl DivRemAssign<isize> for IBig

Source§

impl DivRemAssign<u128> for IBig

Source§

impl DivRemAssign<u16> for IBig

Source§

type OutputRem = u16

Source§

fn div_rem_assign(&mut self, rhs: u16) -> u16

Source§

impl DivRemAssign<u32> for IBig

Source§

type OutputRem = u32

Source§

fn div_rem_assign(&mut self, rhs: u32) -> u32

Source§

impl DivRemAssign<u64> for IBig

Source§

type OutputRem = u64

Source§

fn div_rem_assign(&mut self, rhs: u64) -> u64

Source§

impl DivRemAssign<u8> for IBig

Source§

type OutputRem = u8

Source§

fn div_rem_assign(&mut self, rhs: u8) -> u8

Source§

impl DivRemAssign<usize> for IBig

Source§

impl DivRemAssign for IBig

Source§

impl<'l, 'r> DivRemEuclid<&'r IBig> for &'l IBig

Source§

impl<'r> DivRemEuclid<&'r IBig> for IBig

Source§

impl<'l> DivRemEuclid<IBig> for &'l IBig

Source§

impl DivRemEuclid for IBig

Source§

impl EstimatedLog2 for IBig

Source§

fn log2_bounds(&self) -> (f32, f32)

Estimate the bounds of the binary logarithm. Read more
Source§

fn log2_est(&self) -> f32

Estimate the value of the binary logarithm. It’s calculated as the average of log2_bounds by default.
Source§

impl Euclid for IBig

Source§

fn div_euclid(&self, v: &Self) -> Self

Calculates Euclidean division, the matching method for rem_euclid. Read more
Source§

fn rem_euclid(&self, v: &Self) -> Self

Calculates the least nonnegative remainder of self (mod v). Read more
Source§

impl<'l, 'r> ExtendedGcd<&'r IBig> for &'l IBig

Source§

type OutputGcd = UBig

Source§

type OutputCoeff = IBig

Source§

fn gcd_ext(self, rhs: &IBig) -> (UBig, IBig, IBig)

Calculate the greatest common divisor between the two operands, returns the common divisor g and the Bézout coefficients respectively. Read more
Source§

impl<'l, 'r> ExtendedGcd<&'r IBig> for &'l UBig

Source§

type OutputGcd = UBig

Source§

type OutputCoeff = IBig

Source§

fn gcd_ext(self, rhs: &IBig) -> (UBig, IBig, IBig)

Calculate the greatest common divisor between the two operands, returns the common divisor g and the Bézout coefficients respectively. Read more
Source§

impl<'r> ExtendedGcd<&'r IBig> for IBig

Source§

type OutputGcd = UBig

Source§

type OutputCoeff = IBig

Source§

fn gcd_ext(self, rhs: &IBig) -> (UBig, IBig, IBig)

Calculate the greatest common divisor between the two operands, returns the common divisor g and the Bézout coefficients respectively. Read more
Source§

impl<'r> ExtendedGcd<&'r IBig> for UBig

Source§

type OutputGcd = UBig

Source§

type OutputCoeff = IBig

Source§

fn gcd_ext(self, rhs: &IBig) -> (UBig, IBig, IBig)

Calculate the greatest common divisor between the two operands, returns the common divisor g and the Bézout coefficients respectively. Read more
Source§

impl<'l, 'r> ExtendedGcd<&'r UBig> for &'l IBig

Source§

type OutputGcd = UBig

Source§

type OutputCoeff = IBig

Source§

fn gcd_ext(self, rhs: &UBig) -> (UBig, IBig, IBig)

Calculate the greatest common divisor between the two operands, returns the common divisor g and the Bézout coefficients respectively. Read more
Source§

impl<'r> ExtendedGcd<&'r UBig> for IBig

Source§

type OutputGcd = UBig

Source§

type OutputCoeff = IBig

Source§

fn gcd_ext(self, rhs: &UBig) -> (UBig, IBig, IBig)

Calculate the greatest common divisor between the two operands, returns the common divisor g and the Bézout coefficients respectively. Read more
Source§

impl<'l> ExtendedGcd<IBig> for &'l IBig

Source§

type OutputGcd = UBig

Source§

type OutputCoeff = IBig

Source§

fn gcd_ext(self, rhs: IBig) -> (UBig, IBig, IBig)

Calculate the greatest common divisor between the two operands, returns the common divisor g and the Bézout coefficients respectively. Read more
Source§

impl<'l> ExtendedGcd<IBig> for &'l UBig

Source§

type OutputGcd = UBig

Source§

type OutputCoeff = IBig

Source§

fn gcd_ext(self, rhs: IBig) -> (UBig, IBig, IBig)

Calculate the greatest common divisor between the two operands, returns the common divisor g and the Bézout coefficients respectively. Read more
Source§

impl ExtendedGcd<IBig> for UBig

Source§

type OutputGcd = UBig

Source§

type OutputCoeff = IBig

Source§

fn gcd_ext(self, rhs: IBig) -> (UBig, IBig, IBig)

Calculate the greatest common divisor between the two operands, returns the common divisor g and the Bézout coefficients respectively. Read more
Source§

impl<'l> ExtendedGcd<UBig> for &'l IBig

Source§

type OutputGcd = UBig

Source§

type OutputCoeff = IBig

Source§

fn gcd_ext(self, rhs: UBig) -> (UBig, IBig, IBig)

Calculate the greatest common divisor between the two operands, returns the common divisor g and the Bézout coefficients respectively. Read more
Source§

impl ExtendedGcd<UBig> for IBig

Source§

type OutputGcd = UBig

Source§

type OutputCoeff = IBig

Source§

fn gcd_ext(self, rhs: UBig) -> (UBig, IBig, IBig)

Calculate the greatest common divisor between the two operands, returns the common divisor g and the Bézout coefficients respectively. Read more
Source§

impl ExtendedGcd for IBig

Source§

type OutputGcd = UBig

Source§

type OutputCoeff = IBig

Source§

fn gcd_ext(self, rhs: IBig) -> (UBig, IBig, IBig)

Calculate the greatest common divisor between the two operands, returns the common divisor g and the Bézout coefficients respectively. Read more
Source§

impl From<UBig> for IBig

Source§

fn from(x: UBig) -> IBig

Converts to this type from the input type.
Source§

impl From<bool> for IBig

Source§

fn from(b: bool) -> IBig

Converts to this type from the input type.
Source§

impl From<i128> for IBig

Source§

fn from(value: i128) -> IBig

Converts to this type from the input type.
Source§

impl From<i16> for IBig

Source§

fn from(value: i16) -> IBig

Converts to this type from the input type.
Source§

impl From<i32> for IBig

Source§

fn from(value: i32) -> IBig

Converts to this type from the input type.
Source§

impl From<i64> for IBig

Source§

fn from(value: i64) -> IBig

Converts to this type from the input type.
Source§

impl From<i8> for IBig

Source§

fn from(value: i8) -> IBig

Converts to this type from the input type.
Source§

impl From<isize> for IBig

Source§

fn from(value: isize) -> IBig

Converts to this type from the input type.
Source§

impl From<u128> for IBig

Source§

fn from(value: u128) -> IBig

Converts to this type from the input type.
Source§

impl From<u16> for IBig

Source§

fn from(value: u16) -> IBig

Converts to this type from the input type.
Source§

impl From<u32> for IBig

Source§

fn from(value: u32) -> IBig

Converts to this type from the input type.
Source§

impl From<u64> for IBig

Source§

fn from(value: u64) -> IBig

Converts to this type from the input type.
Source§

impl From<u8> for IBig

Source§

fn from(value: u8) -> IBig

Converts to this type from the input type.
Source§

impl From<usize> for IBig

Source§

fn from(value: usize) -> IBig

Converts to this type from the input type.
Source§

impl FromPrimitive for IBig

Source§

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

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

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

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

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_i128(n: i128) -> Option<Self>

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_isize(n: isize) -> Option<Self>

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_u8(n: u8) -> Option<Self>

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

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

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

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_u128(n: u128) -> Option<Self>

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_usize(n: usize) -> Option<Self>

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_f32(n: f32) -> Option<Self>

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

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 IBig

Source§

type Err = ParseError

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

fn from_str(s: &str) -> Result<IBig, ParseError>

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

impl<'l, 'r> Gcd<&'r IBig> for &'l IBig

Source§

type Output = UBig

Source§

fn gcd(self, rhs: &IBig) -> UBig

Compute the greatest common divisor between the two operands. Read more
Source§

impl<'l, 'r> Gcd<&'r IBig> for &'l UBig

Source§

type Output = UBig

Source§

fn gcd(self, rhs: &IBig) -> UBig

Compute the greatest common divisor between the two operands. Read more
Source§

impl<'r> Gcd<&'r IBig> for IBig

Source§

type Output = UBig

Source§

fn gcd(self, rhs: &IBig) -> UBig

Compute the greatest common divisor between the two operands. Read more
Source§

impl<'r> Gcd<&'r IBig> for UBig

Source§

type Output = UBig

Source§

fn gcd(self, rhs: &IBig) -> UBig

Compute the greatest common divisor between the two operands. Read more
Source§

impl<'l, 'r> Gcd<&'r UBig> for &'l IBig

Source§

type Output = UBig

Source§

fn gcd(self, rhs: &UBig) -> UBig

Compute the greatest common divisor between the two operands. Read more
Source§

impl<'r> Gcd<&'r UBig> for IBig

Source§

type Output = UBig

Source§

fn gcd(self, rhs: &UBig) -> UBig

Compute the greatest common divisor between the two operands. Read more
Source§

impl<'l> Gcd<IBig> for &'l IBig

Source§

type Output = UBig

Source§

fn gcd(self, rhs: IBig) -> UBig

Compute the greatest common divisor between the two operands. Read more
Source§

impl<'l> Gcd<IBig> for &'l UBig

Source§

type Output = UBig

Source§

fn gcd(self, rhs: IBig) -> UBig

Compute the greatest common divisor between the two operands. Read more
Source§

impl Gcd<IBig> for UBig

Source§

type Output = UBig

Source§

fn gcd(self, rhs: IBig) -> UBig

Compute the greatest common divisor between the two operands. Read more
Source§

impl<'l> Gcd<UBig> for &'l IBig

Source§

type Output = UBig

Source§

fn gcd(self, rhs: UBig) -> UBig

Compute the greatest common divisor between the two operands. Read more
Source§

impl Gcd<UBig> for IBig

Source§

type Output = UBig

Source§

fn gcd(self, rhs: UBig) -> UBig

Compute the greatest common divisor between the two operands. Read more
Source§

impl Gcd for IBig

Source§

type Output = UBig

Source§

fn gcd(self, rhs: IBig) -> UBig

Compute the greatest common divisor between the two operands. Read more
Source§

impl Hash for IBig

Source§

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

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 IBig

Source§

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

Floored integer division. Read more
Source§

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

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

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

Floored integer modulo, satisfying: Read more
Source§

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

Deprecated, use is_multiple_of instead.
Source§

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

Greatest Common Divisor (GCD). Read more
Source§

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

Lowest Common Multiple (LCM). Read more
Source§

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

Greatest common divisor and Bézout coefficients. 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_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§

impl<'a> IntoRing<'a, ConstDivisor> for IBig

Source§

impl LowerHex for IBig

Source§

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

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

impl<'l, 'r> Mul<&'r IBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r IBig> for &'l UBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r IBig> for &'l i128

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r IBig> for &'l i16

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r IBig> for &'l i32

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r IBig> for &'l i64

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r IBig> for &'l i8

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r IBig> for &'l isize

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r IBig> for &'l u128

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r IBig> for &'l u16

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r IBig> for &'l u32

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r IBig> for &'l u64

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r IBig> for &'l u8

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r IBig> for &'l usize

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r IBig> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r IBig> for UBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r IBig> for i128

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r IBig> for i16

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r IBig> for i32

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r IBig> for i64

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r IBig> for i8

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r IBig> for isize

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r IBig> for u128

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r IBig> for u16

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r IBig> for u32

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r IBig> for u64

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r IBig> for u8

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r IBig> for usize

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r UBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UBig) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r UBig> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &UBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r i128> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &i128) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r i128> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &i128) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r i16> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &i16) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r i16> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &i16) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r i32> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &i32) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r i32> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &i32) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r i64> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &i64) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r i64> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &i64) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r i8> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &i8) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r i8> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &i8) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r isize> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &isize) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r isize> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &isize) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r u128> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &u128) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r u128> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &u128) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r u16> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &u16) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r u16> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &u16) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r u32> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &u32) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r u32> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &u32) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r u64> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &u64) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r u64> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &u64) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r u8> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &u8) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r u8> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &u8) -> IBig

Performs the * operation. Read more
Source§

impl<'l, 'r> Mul<&'r usize> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &usize) -> IBig

Performs the * operation. Read more
Source§

impl<'r> Mul<&'r usize> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &usize) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<IBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<IBig> for &'l UBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<IBig> for &'l i128

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<IBig> for &'l i16

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<IBig> for &'l i32

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<IBig> for &'l i64

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<IBig> for &'l i8

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<IBig> for &'l isize

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<IBig> for &'l u128

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<IBig> for &'l u16

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<IBig> for &'l u32

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<IBig> for &'l u64

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<IBig> for &'l u8

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<IBig> for &'l usize

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl Mul<IBig> for Sign

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<IBig> for UBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl Mul<IBig> for i128

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl Mul<IBig> for i16

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl Mul<IBig> for i32

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl Mul<IBig> for i64

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl Mul<IBig> for i8

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl Mul<IBig> for isize

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl Mul<IBig> for u128

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl Mul<IBig> for u16

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl Mul<IBig> for u32

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl Mul<IBig> for u64

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl Mul<IBig> for u8

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl Mul<IBig> for usize

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl Mul<Sign> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Sign) -> Self::Output

Performs the * operation. Read more
Source§

impl<'l> Mul<UBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UBig) -> IBig

Performs the * operation. Read more
Source§

impl Mul<UBig> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: UBig) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<i128> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i128) -> IBig

Performs the * operation. Read more
Source§

impl Mul<i128> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i128) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<i16> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i16) -> IBig

Performs the * operation. Read more
Source§

impl Mul<i16> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i16) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<i32> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i32) -> IBig

Performs the * operation. Read more
Source§

impl Mul<i32> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i32) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<i64> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i64) -> IBig

Performs the * operation. Read more
Source§

impl Mul<i64> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i64) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<i8> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i8) -> IBig

Performs the * operation. Read more
Source§

impl Mul<i8> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i8) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<isize> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: isize) -> IBig

Performs the * operation. Read more
Source§

impl Mul<isize> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: isize) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<u128> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u128) -> IBig

Performs the * operation. Read more
Source§

impl Mul<u128> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u128) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<u16> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u16) -> IBig

Performs the * operation. Read more
Source§

impl Mul<u16> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u16) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<u32> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u32) -> IBig

Performs the * operation. Read more
Source§

impl Mul<u32> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u32) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<u64> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u64) -> IBig

Performs the * operation. Read more
Source§

impl Mul<u64> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u64) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<u8> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u8) -> IBig

Performs the * operation. Read more
Source§

impl Mul<u8> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u8) -> IBig

Performs the * operation. Read more
Source§

impl<'l> Mul<usize> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: usize) -> IBig

Performs the * operation. Read more
Source§

impl Mul<usize> for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: usize) -> IBig

Performs the * operation. Read more
Source§

impl Mul for IBig

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: IBig) -> IBig

Performs the * operation. Read more
Source§

impl MulAssign<&IBig> for IBig

Source§

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

Performs the *= operation. Read more
Source§

impl MulAssign<&UBig> for IBig

Source§

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

Performs the *= operation. Read more
Source§

impl MulAssign<&i128> for IBig

Source§

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

Performs the *= operation. Read more
Source§

impl MulAssign<&i16> for IBig

Source§

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

Performs the *= operation. Read more
Source§

impl MulAssign<&i32> for IBig

Source§

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

Performs the *= operation. Read more
Source§

impl MulAssign<&i64> for IBig

Source§

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

Performs the *= operation. Read more
Source§

impl MulAssign<&i8> for IBig

Source§

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

Performs the *= operation. Read more
Source§

impl MulAssign<&isize> for IBig

Source§

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

Performs the *= operation. Read more
Source§

impl MulAssign<&u128> for IBig

Source§

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

Performs the *= operation. Read more
Source§

impl MulAssign<&u16> for IBig

Source§

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

Performs the *= operation. Read more
Source§

impl MulAssign<&u32> for IBig

Source§

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

Performs the *= operation. Read more
Source§

impl MulAssign<&u64> for IBig

Source§

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

Performs the *= operation. Read more
Source§

impl MulAssign<&u8> for IBig

Source§

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

Performs the *= operation. Read more
Source§

impl MulAssign<&usize> for IBig

Source§

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

Performs the *= operation. Read more
Source§

impl MulAssign<Sign> for IBig

Source§

fn mul_assign(&mut self, rhs: Sign)

Performs the *= operation. Read more
Source§

impl MulAssign<UBig> for IBig

Source§

fn mul_assign(&mut self, rhs: UBig)

Performs the *= operation. Read more
Source§

impl MulAssign<i128> for IBig

Source§

fn mul_assign(&mut self, rhs: i128)

Performs the *= operation. Read more
Source§

impl MulAssign<i16> for IBig

Source§

fn mul_assign(&mut self, rhs: i16)

Performs the *= operation. Read more
Source§

impl MulAssign<i32> for IBig

Source§

fn mul_assign(&mut self, rhs: i32)

Performs the *= operation. Read more
Source§

impl MulAssign<i64> for IBig

Source§

fn mul_assign(&mut self, rhs: i64)

Performs the *= operation. Read more
Source§

impl MulAssign<i8> for IBig

Source§

fn mul_assign(&mut self, rhs: i8)

Performs the *= operation. Read more
Source§

impl MulAssign<isize> for IBig

Source§

fn mul_assign(&mut self, rhs: isize)

Performs the *= operation. Read more
Source§

impl MulAssign<u128> for IBig

Source§

fn mul_assign(&mut self, rhs: u128)

Performs the *= operation. Read more
Source§

impl MulAssign<u16> for IBig

Source§

fn mul_assign(&mut self, rhs: u16)

Performs the *= operation. Read more
Source§

impl MulAssign<u32> for IBig

Source§

fn mul_assign(&mut self, rhs: u32)

Performs the *= operation. Read more
Source§

impl MulAssign<u64> for IBig

Source§

fn mul_assign(&mut self, rhs: u64)

Performs the *= operation. Read more
Source§

impl MulAssign<u8> for IBig

Source§

fn mul_assign(&mut self, rhs: u8)

Performs the *= operation. Read more
Source§

impl MulAssign<usize> for IBig

Source§

fn mul_assign(&mut self, rhs: usize)

Performs the *= operation. Read more
Source§

impl MulAssign for IBig

Source§

fn mul_assign(&mut self, rhs: IBig)

Performs the *= operation. Read more
Source§

impl Neg for &IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn neg(self) -> IBig

Performs the unary - operation. Read more
Source§

impl Neg for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn neg(self) -> IBig

Performs the unary - operation. Read more
Source§

impl Not for &IBig

Source§

type Output = IBig

The resulting type after applying the ! operator.
Source§

fn not(self) -> IBig

Performs the unary ! operation. Read more
Source§

impl Not for IBig

Source§

type Output = IBig

The resulting type after applying the ! operator.
Source§

fn not(self) -> IBig

Performs the unary ! operation. Read more
Source§

impl Num for IBig

Source§

type FromStrRadixErr = ParseError

Source§

fn from_str_radix(s: &str, radix: u32) -> Result<Self, ParseError>

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

impl NumHash for IBig

Source§

fn num_hash<H: Hasher>(&self, state: &mut H)

Consistent Hash::hash on different numeric types. Read more
Source§

impl NumOrd<IBig> for IBig

Source§

fn num_cmp(&self, other: &IBig) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

fn num_partial_cmp(&self, other: &IBig) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

impl NumOrd<IBig> for UBig

Source§

fn num_cmp(&self, other: &IBig) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

fn num_partial_cmp(&self, other: &IBig) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

impl NumOrd<IBig> for f32

Source§

fn num_partial_cmp(&self, other: &IBig) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<IBig> for f64

Source§

fn num_partial_cmp(&self, other: &IBig) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<IBig> for i128

Source§

fn num_partial_cmp(&self, other: &IBig) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<IBig> for i16

Source§

fn num_partial_cmp(&self, other: &IBig) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<IBig> for i32

Source§

fn num_partial_cmp(&self, other: &IBig) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<IBig> for i64

Source§

fn num_partial_cmp(&self, other: &IBig) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<IBig> for i8

Source§

fn num_partial_cmp(&self, other: &IBig) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<IBig> for isize

Source§

fn num_partial_cmp(&self, other: &IBig) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<IBig> for u128

Source§

fn num_partial_cmp(&self, other: &IBig) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<IBig> for u16

Source§

fn num_partial_cmp(&self, other: &IBig) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<IBig> for u32

Source§

fn num_partial_cmp(&self, other: &IBig) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<IBig> for u64

Source§

fn num_partial_cmp(&self, other: &IBig) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<IBig> for u8

Source§

fn num_partial_cmp(&self, other: &IBig) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<IBig> for usize

Source§

fn num_partial_cmp(&self, other: &IBig) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<UBig> for IBig

Source§

fn num_cmp(&self, other: &UBig) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

fn num_partial_cmp(&self, other: &UBig) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

impl NumOrd<f32> for IBig

Source§

fn num_partial_cmp(&self, other: &f32) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<f64> for IBig

Source§

fn num_partial_cmp(&self, other: &f64) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<i128> for IBig

Source§

fn num_partial_cmp(&self, other: &i128) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<i16> for IBig

Source§

fn num_partial_cmp(&self, other: &i16) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<i32> for IBig

Source§

fn num_partial_cmp(&self, other: &i32) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<i64> for IBig

Source§

fn num_partial_cmp(&self, other: &i64) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<i8> for IBig

Source§

fn num_partial_cmp(&self, other: &i8) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<isize> for IBig

Source§

fn num_partial_cmp(&self, other: &isize) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<u128> for IBig

Source§

fn num_partial_cmp(&self, other: &u128) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<u16> for IBig

Source§

fn num_partial_cmp(&self, other: &u16) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<u32> for IBig

Source§

fn num_partial_cmp(&self, other: &u32) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<u64> for IBig

Source§

fn num_partial_cmp(&self, other: &u64) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<u8> for IBig

Source§

fn num_partial_cmp(&self, other: &u8) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl NumOrd<usize> for IBig

Source§

fn num_partial_cmp(&self, other: &usize) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
Source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
Source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
Source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
Source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
Source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
Source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
Source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
Source§

impl Octal for IBig

Source§

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

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

impl One for IBig

Source§

fn one() -> Self

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

fn is_one(&self) -> bool

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

fn set_one(&mut self)

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

impl Ord for IBig

Source§

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

Source§

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

Source§

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

Source§

type Output = IBig

The result after applying the operator.
Source§

fn pow(self, rhs: usize) -> IBig

Returns self to the power rhs. Read more
Source§

impl Pow<usize> for IBig

Source§

type Output = IBig

The result after applying the operator.
Source§

fn pow(self, rhs: usize) -> IBig

Returns self to the power rhs. Read more
Source§

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

Source§

fn product<I: Iterator<Item = T>>(iter: I) -> Self

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

impl<'l, 'r> Rem<&'r ConstDivisor> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &ConstDivisor) -> IBig

Performs the % operation. Read more
Source§

impl<'r> Rem<&'r ConstDivisor> for IBig

Source§

type Output = IBig

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &ConstDivisor) -> IBig

Performs the % operation. Read more
Source§

impl<'l, 'r> Rem<&'r IBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &IBig) -> IBig

Performs the % operation. Read more
Source§

impl<'l, 'r> Rem<&'r IBig> for &'l UBig

Source§

type Output = UBig

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &IBig) -> UBig

Performs the % operation. Read more
Source§

impl<'r> Rem<&'r IBig> for IBig

Source§

type Output = IBig

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &IBig) -> IBig

Performs the % operation. Read more
Source§

impl<'r> Rem<&'r IBig> for UBig

Source§

type Output = UBig

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &IBig) -> UBig

Performs the % operation. Read more
Source§

impl<'l, 'r> Rem<&'r UBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UBig) -> IBig

Performs the % operation. Read more
Source§

impl<'r> Rem<&'r UBig> for IBig

Source§

type Output = IBig

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &UBig) -> IBig

Performs the % operation. Read more
Source§

impl<'l, 'r> Rem<&'r i128> for &'l IBig

Source§

type Output = i128

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &i128) -> i128

Performs the % operation. Read more
Source§

impl<'r> Rem<&'r i128> for IBig

Source§

type Output = i128

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &i128) -> i128

Performs the % operation. Read more
Source§

impl<'l, 'r> Rem<&'r i16> for &'l IBig

Source§

type Output = i16

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &i16) -> i16

Performs the % operation. Read more
Source§

impl<'r> Rem<&'r i16> for IBig

Source§

type Output = i16

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &i16) -> i16

Performs the % operation. Read more
Source§

impl<'l, 'r> Rem<&'r i32> for &'l IBig

Source§

type Output = i32

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &i32) -> i32

Performs the % operation. Read more
Source§

impl<'r> Rem<&'r i32> for IBig

Source§

type Output = i32

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &i32) -> i32

Performs the % operation. Read more
Source§

impl<'l, 'r> Rem<&'r i64> for &'l IBig

Source§

type Output = i64

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &i64) -> i64

Performs the % operation. Read more
Source§

impl<'r> Rem<&'r i64> for IBig

Source§

type Output = i64

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &i64) -> i64

Performs the % operation. Read more
Source§

impl<'l, 'r> Rem<&'r i8> for &'l IBig

Source§

type Output = i8

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &i8) -> i8

Performs the % operation. Read more
Source§

impl<'r> Rem<&'r i8> for IBig

Source§

type Output = i8

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &i8) -> i8

Performs the % operation. Read more
Source§

impl<'l, 'r> Rem<&'r isize> for &'l IBig

Source§

type Output = isize

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &isize) -> isize

Performs the % operation. Read more
Source§

impl<'r> Rem<&'r isize> for IBig

Source§

type Output = isize

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &isize) -> isize

Performs the % operation. Read more
Source§

impl<'l, 'r> Rem<&'r u128> for &'l IBig

Source§

type Output = u128

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &u128) -> u128

Performs the % operation. Read more
Source§

impl<'r> Rem<&'r u128> for IBig

Source§

type Output = u128

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &u128) -> u128

Performs the % operation. Read more
Source§

impl<'l, 'r> Rem<&'r u16> for &'l IBig

Source§

type Output = u16

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &u16) -> u16

Performs the % operation. Read more
Source§

impl<'r> Rem<&'r u16> for IBig

Source§

type Output = u16

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &u16) -> u16

Performs the % operation. Read more
Source§

impl<'l, 'r> Rem<&'r u32> for &'l IBig

Source§

type Output = u32

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &u32) -> u32

Performs the % operation. Read more
Source§

impl<'r> Rem<&'r u32> for IBig

Source§

type Output = u32

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &u32) -> u32

Performs the % operation. Read more
Source§

impl<'l, 'r> Rem<&'r u64> for &'l IBig

Source§

type Output = u64

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &u64) -> u64

Performs the % operation. Read more
Source§

impl<'r> Rem<&'r u64> for IBig

Source§

type Output = u64

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &u64) -> u64

Performs the % operation. Read more
Source§

impl<'l, 'r> Rem<&'r u8> for &'l IBig

Source§

type Output = u8

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &u8) -> u8

Performs the % operation. Read more
Source§

impl<'r> Rem<&'r u8> for IBig

Source§

type Output = u8

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &u8) -> u8

Performs the % operation. Read more
Source§

impl<'l, 'r> Rem<&'r usize> for &'l IBig

Source§

type Output = usize

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &usize) -> usize

Performs the % operation. Read more
Source§

impl<'r> Rem<&'r usize> for IBig

Source§

type Output = usize

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &usize) -> usize

Performs the % operation. Read more
Source§

impl<'l> Rem<IBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: IBig) -> IBig

Performs the % operation. Read more
Source§

impl<'l> Rem<IBig> for &'l UBig

Source§

type Output = UBig

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: IBig) -> UBig

Performs the % operation. Read more
Source§

impl Rem<IBig> for UBig

Source§

type Output = UBig

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: IBig) -> UBig

Performs the % operation. Read more
Source§

impl<'l> Rem<UBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UBig) -> IBig

Performs the % operation. Read more
Source§

impl Rem<UBig> for IBig

Source§

type Output = IBig

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: UBig) -> IBig

Performs the % operation. Read more
Source§

impl<'l> Rem<i128> for &'l IBig

Source§

type Output = i128

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: i128) -> i128

Performs the % operation. Read more
Source§

impl Rem<i128> for IBig

Source§

type Output = i128

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: i128) -> i128

Performs the % operation. Read more
Source§

impl<'l> Rem<i16> for &'l IBig

Source§

type Output = i16

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: i16) -> i16

Performs the % operation. Read more
Source§

impl Rem<i16> for IBig

Source§

type Output = i16

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: i16) -> i16

Performs the % operation. Read more
Source§

impl<'l> Rem<i32> for &'l IBig

Source§

type Output = i32

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: i32) -> i32

Performs the % operation. Read more
Source§

impl Rem<i32> for IBig

Source§

type Output = i32

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: i32) -> i32

Performs the % operation. Read more
Source§

impl<'l> Rem<i64> for &'l IBig

Source§

type Output = i64

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: i64) -> i64

Performs the % operation. Read more
Source§

impl Rem<i64> for IBig

Source§

type Output = i64

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: i64) -> i64

Performs the % operation. Read more
Source§

impl<'l> Rem<i8> for &'l IBig

Source§

type Output = i8

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: i8) -> i8

Performs the % operation. Read more
Source§

impl Rem<i8> for IBig

Source§

type Output = i8

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: i8) -> i8

Performs the % operation. Read more
Source§

impl<'l> Rem<isize> for &'l IBig

Source§

type Output = isize

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: isize) -> isize

Performs the % operation. Read more
Source§

impl Rem<isize> for IBig

Source§

type Output = isize

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: isize) -> isize

Performs the % operation. Read more
Source§

impl<'l> Rem<u128> for &'l IBig

Source§

type Output = u128

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u128) -> u128

Performs the % operation. Read more
Source§

impl Rem<u128> for IBig

Source§

type Output = u128

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u128) -> u128

Performs the % operation. Read more
Source§

impl<'l> Rem<u16> for &'l IBig

Source§

type Output = u16

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u16) -> u16

Performs the % operation. Read more
Source§

impl Rem<u16> for IBig

Source§

type Output = u16

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u16) -> u16

Performs the % operation. Read more
Source§

impl<'l> Rem<u32> for &'l IBig

Source§

type Output = u32

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u32) -> u32

Performs the % operation. Read more
Source§

impl Rem<u32> for IBig

Source§

type Output = u32

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u32) -> u32

Performs the % operation. Read more
Source§

impl<'l> Rem<u64> for &'l IBig

Source§

type Output = u64

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u64) -> u64

Performs the % operation. Read more
Source§

impl Rem<u64> for IBig

Source§

type Output = u64

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u64) -> u64

Performs the % operation. Read more
Source§

impl<'l> Rem<u8> for &'l IBig

Source§

type Output = u8

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u8) -> u8

Performs the % operation. Read more
Source§

impl Rem<u8> for IBig

Source§

type Output = u8

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u8) -> u8

Performs the % operation. Read more
Source§

impl<'l> Rem<usize> for &'l IBig

Source§

type Output = usize

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: usize) -> usize

Performs the % operation. Read more
Source§

impl Rem<usize> for IBig

Source§

type Output = usize

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: usize) -> usize

Performs the % operation. Read more
Source§

impl Rem for IBig

Source§

type Output = IBig

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: IBig) -> IBig

Performs the % operation. Read more
Source§

impl<'r> RemAssign<&'r ConstDivisor> for IBig

Source§

fn rem_assign(&mut self, rhs: &'r ConstDivisor)

Performs the %= operation. Read more
Source§

impl RemAssign<&IBig> for IBig

Source§

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

Performs the %= operation. Read more
Source§

impl RemAssign<&IBig> for UBig

Source§

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

Performs the %= operation. Read more
Source§

impl RemAssign<&UBig> for IBig

Source§

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

Performs the %= operation. Read more
Source§

impl RemAssign<IBig> for UBig

Source§

fn rem_assign(&mut self, rhs: IBig)

Performs the %= operation. Read more
Source§

impl RemAssign<UBig> for IBig

Source§

fn rem_assign(&mut self, rhs: UBig)

Performs the %= operation. Read more
Source§

impl RemAssign for IBig

Source§

fn rem_assign(&mut self, rhs: IBig)

Performs the %= operation. Read more
Source§

impl<'l, 'r> RemEuclid<&'r IBig> for &'l IBig

Source§

impl<'r> RemEuclid<&'r IBig> for IBig

Source§

impl<'l> RemEuclid<IBig> for &'l IBig

Source§

impl RemEuclid for IBig

Source§

impl Roots for IBig

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§

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

Returns the truncated principal nth root of an integer – if x >= 0 { ⌊ⁿ√x⌋ } else { ⌈ⁿ√x⌉ } Read more
Source§

impl SampleUniform for IBig

Source§

type Sampler = UniformIBig

The UniformSampler implementation supporting type X.
Source§

impl Serialize for IBig

Source§

fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error>

Serialize this value into the given Serde serializer. Read more
Source§

impl Shl<&usize> for &IBig

Source§

type Output = IBig

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

fn shl(self, rhs: &usize) -> IBig

Performs the << operation. Read more
Source§

impl Shl<&usize> for IBig

Source§

type Output = IBig

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

fn shl(self, rhs: &usize) -> IBig

Performs the << operation. Read more
Source§

impl Shl<usize> for &IBig

Source§

type Output = IBig

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

fn shl(self, rhs: usize) -> IBig

Performs the << operation. Read more
Source§

impl Shl<usize> for IBig

Source§

type Output = IBig

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

fn shl(self, rhs: usize) -> IBig

Performs the << operation. Read more
Source§

impl ShlAssign<&usize> for IBig

Source§

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

Performs the <<= operation. Read more
Source§

impl ShlAssign<usize> for IBig

Source§

fn shl_assign(&mut self, rhs: usize)

Performs the <<= operation. Read more
Source§

impl Shr<&usize> for &IBig

Source§

type Output = IBig

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

fn shr(self, rhs: &usize) -> IBig

Performs the >> operation. Read more
Source§

impl Shr<&usize> for IBig

Source§

type Output = IBig

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

fn shr(self, rhs: &usize) -> IBig

Performs the >> operation. Read more
Source§

impl Shr<usize> for &IBig

Source§

type Output = IBig

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

fn shr(self, rhs: usize) -> IBig

Performs the >> operation. Read more
Source§

impl Shr<usize> for IBig

Source§

type Output = IBig

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

fn shr(self, rhs: usize) -> IBig

Performs the >> operation. Read more
Source§

impl ShrAssign<&usize> for IBig

Source§

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

Performs the >>= operation. Read more
Source§

impl ShrAssign<usize> for IBig

Source§

fn shr_assign(&mut self, rhs: usize)

Performs the >>= operation. Read more
Source§

impl Signed for IBig

Source§

fn sign(&self) -> Sign

Source§

fn is_positive(&self) -> bool

Source§

fn is_negative(&self) -> bool

Source§

impl Signed for IBig

Source§

fn abs(&self) -> Self

Computes the absolute value. Read more
Source§

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

The positive difference of two numbers. Read more
Source§

fn signum(&self) -> Self

Returns the sign of the number. Read more
Source§

fn is_positive(&self) -> bool

Returns true if the number is positive and false if the number is zero or negative.
Source§

fn is_negative(&self) -> bool

Returns true if the number is negative and false if the number is zero or positive.
Source§

impl SquareRoot for IBig

Source§

impl<'l, 'r> Sub<&'r IBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r IBig> for &'l UBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r IBig> for &'l i128

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r IBig> for &'l i16

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r IBig> for &'l i32

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r IBig> for &'l i64

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r IBig> for &'l i8

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r IBig> for &'l isize

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r IBig> for &'l u128

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r IBig> for &'l u16

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r IBig> for &'l u32

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r IBig> for &'l u64

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r IBig> for &'l u8

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r IBig> for &'l usize

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r IBig> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r IBig> for UBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r IBig> for i128

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r IBig> for i16

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r IBig> for i32

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r IBig> for i64

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r IBig> for i8

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r IBig> for isize

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r IBig> for u128

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r IBig> for u16

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r IBig> for u32

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r IBig> for u64

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r IBig> for u8

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r IBig> for usize

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r UBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UBig) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r UBig> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &UBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r i128> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &i128) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r i128> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &i128) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r i16> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &i16) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r i16> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &i16) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r i32> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &i32) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r i32> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &i32) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r i64> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &i64) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r i64> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &i64) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r i8> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &i8) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r i8> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &i8) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r isize> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &isize) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r isize> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &isize) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r u128> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u128) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r u128> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u128) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r u16> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u16) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r u16> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u16) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r u32> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u32) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r u32> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u32) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r u64> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u64) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r u64> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u64) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r u8> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u8) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r u8> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u8) -> IBig

Performs the - operation. Read more
Source§

impl<'l, 'r> Sub<&'r usize> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &usize) -> IBig

Performs the - operation. Read more
Source§

impl<'r> Sub<&'r usize> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &usize) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<IBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<IBig> for &'l UBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<IBig> for &'l i128

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<IBig> for &'l i16

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<IBig> for &'l i32

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<IBig> for &'l i64

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<IBig> for &'l i8

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<IBig> for &'l isize

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<IBig> for &'l u128

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<IBig> for &'l u16

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<IBig> for &'l u32

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<IBig> for &'l u64

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<IBig> for &'l u8

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<IBig> for &'l usize

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl Sub<IBig> for UBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl Sub<IBig> for i128

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl Sub<IBig> for i16

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl Sub<IBig> for i32

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl Sub<IBig> for i64

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl Sub<IBig> for i8

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl Sub<IBig> for isize

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl Sub<IBig> for u128

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl Sub<IBig> for u16

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl Sub<IBig> for u32

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl Sub<IBig> for u64

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl Sub<IBig> for u8

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl Sub<IBig> for usize

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<UBig> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UBig) -> IBig

Performs the - operation. Read more
Source§

impl Sub<UBig> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: UBig) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<i128> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i128) -> IBig

Performs the - operation. Read more
Source§

impl Sub<i128> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i128) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<i16> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i16) -> IBig

Performs the - operation. Read more
Source§

impl Sub<i16> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i16) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<i32> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i32) -> IBig

Performs the - operation. Read more
Source§

impl Sub<i32> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i32) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<i64> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i64) -> IBig

Performs the - operation. Read more
Source§

impl Sub<i64> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i64) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<i8> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i8) -> IBig

Performs the - operation. Read more
Source§

impl Sub<i8> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i8) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<isize> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: isize) -> IBig

Performs the - operation. Read more
Source§

impl Sub<isize> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: isize) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<u128> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u128) -> IBig

Performs the - operation. Read more
Source§

impl Sub<u128> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u128) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<u16> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u16) -> IBig

Performs the - operation. Read more
Source§

impl Sub<u16> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u16) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<u32> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u32) -> IBig

Performs the - operation. Read more
Source§

impl Sub<u32> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u32) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<u64> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u64) -> IBig

Performs the - operation. Read more
Source§

impl Sub<u64> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u64) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<u8> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u8) -> IBig

Performs the - operation. Read more
Source§

impl Sub<u8> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u8) -> IBig

Performs the - operation. Read more
Source§

impl<'l> Sub<usize> for &'l IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: usize) -> IBig

Performs the - operation. Read more
Source§

impl Sub<usize> for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: usize) -> IBig

Performs the - operation. Read more
Source§

impl Sub for IBig

Source§

type Output = IBig

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: IBig) -> IBig

Performs the - operation. Read more
Source§

impl SubAssign<&IBig> for IBig

Source§

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

Performs the -= operation. Read more
Source§

impl SubAssign<&UBig> for IBig

Source§

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

Performs the -= operation. Read more
Source§

impl SubAssign<&i128> for IBig

Source§

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

Performs the -= operation. Read more
Source§

impl SubAssign<&i16> for IBig

Source§

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

Performs the -= operation. Read more
Source§

impl SubAssign<&i32> for IBig

Source§

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

Performs the -= operation. Read more
Source§

impl SubAssign<&i64> for IBig

Source§

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

Performs the -= operation. Read more
Source§

impl SubAssign<&i8> for IBig

Source§

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

Performs the -= operation. Read more
Source§

impl SubAssign<&isize> for IBig

Source§

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

Performs the -= operation. Read more
Source§

impl SubAssign<&u128> for IBig

Source§

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

Performs the -= operation. Read more
Source§

impl SubAssign<&u16> for IBig

Source§

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

Performs the -= operation. Read more
Source§

impl SubAssign<&u32> for IBig

Source§

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

Performs the -= operation. Read more
Source§

impl SubAssign<&u64> for IBig

Source§

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

Performs the -= operation. Read more
Source§

impl SubAssign<&u8> for IBig

Source§

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

Performs the -= operation. Read more
Source§

impl SubAssign<&usize> for IBig

Source§

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

Performs the -= operation. Read more
Source§

impl SubAssign<UBig> for IBig

Source§

fn sub_assign(&mut self, rhs: UBig)

Performs the -= operation. Read more
Source§

impl SubAssign<i128> for IBig

Source§

fn sub_assign(&mut self, rhs: i128)

Performs the -= operation. Read more
Source§

impl SubAssign<i16> for IBig

Source§

fn sub_assign(&mut self, rhs: i16)

Performs the -= operation. Read more
Source§

impl SubAssign<i32> for IBig

Source§

fn sub_assign(&mut self, rhs: i32)

Performs the -= operation. Read more
Source§

impl SubAssign<i64> for IBig

Source§

fn sub_assign(&mut self, rhs: i64)

Performs the -= operation. Read more
Source§

impl SubAssign<i8> for IBig

Source§

fn sub_assign(&mut self, rhs: i8)

Performs the -= operation. Read more
Source§

impl SubAssign<isize> for IBig

Source§

fn sub_assign(&mut self, rhs: isize)

Performs the -= operation. Read more
Source§

impl SubAssign<u128> for IBig

Source§

fn sub_assign(&mut self, rhs: u128)

Performs the -= operation. Read more
Source§

impl SubAssign<u16> for IBig

Source§

fn sub_assign(&mut self, rhs: u16)

Performs the -= operation. Read more
Source§

impl SubAssign<u32> for IBig

Source§

fn sub_assign(&mut self, rhs: u32)

Performs the -= operation. Read more
Source§

impl SubAssign<u64> for IBig

Source§

fn sub_assign(&mut self, rhs: u64)

Performs the -= operation. Read more
Source§

impl SubAssign<u8> for IBig

Source§

fn sub_assign(&mut self, rhs: u8)

Performs the -= operation. Read more
Source§

impl SubAssign<usize> for IBig

Source§

fn sub_assign(&mut self, rhs: usize)

Performs the -= operation. Read more
Source§

impl SubAssign for IBig

Source§

fn sub_assign(&mut self, rhs: IBig)

Performs the -= operation. Read more
Source§

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

Source§

fn sum<I: Iterator<Item = T>>(iter: I) -> Self

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

impl ToPrimitive for IBig

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_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_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_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_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_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_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<&IBig> for i128

Source§

type Error = ConversionError

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

fn try_from(value: &IBig) -> Result<i128, ConversionError>

Performs the conversion.
Source§

impl TryFrom<&IBig> for i16

Source§

type Error = ConversionError

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

fn try_from(value: &IBig) -> Result<i16, ConversionError>

Performs the conversion.
Source§

impl TryFrom<&IBig> for i32

Source§

type Error = ConversionError

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

fn try_from(value: &IBig) -> Result<i32, ConversionError>

Performs the conversion.
Source§

impl TryFrom<&IBig> for i64

Source§

type Error = ConversionError

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

fn try_from(value: &IBig) -> Result<i64, ConversionError>

Performs the conversion.
Source§

impl TryFrom<&IBig> for i8

Source§

type Error = ConversionError

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

fn try_from(value: &IBig) -> Result<i8, ConversionError>

Performs the conversion.
Source§

impl TryFrom<&IBig> for isize

Source§

type Error = ConversionError

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

fn try_from(value: &IBig) -> Result<isize, ConversionError>

Performs the conversion.
Source§

impl TryFrom<&IBig> for u128

Source§

type Error = ConversionError

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

fn try_from(value: &IBig) -> Result<u128, ConversionError>

Performs the conversion.
Source§

impl TryFrom<&IBig> for u16

Source§

type Error = ConversionError

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

fn try_from(value: &IBig) -> Result<u16, ConversionError>

Performs the conversion.
Source§

impl TryFrom<&IBig> for u32

Source§

type Error = ConversionError

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

fn try_from(value: &IBig) -> Result<u32, ConversionError>

Performs the conversion.
Source§

impl TryFrom<&IBig> for u64

Source§

type Error = ConversionError

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

fn try_from(value: &IBig) -> Result<u64, ConversionError>

Performs the conversion.
Source§

impl TryFrom<&IBig> for u8

Source§

type Error = ConversionError

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

fn try_from(value: &IBig) -> Result<u8, ConversionError>

Performs the conversion.
Source§

impl TryFrom<&IBig> for usize

Source§

type Error = ConversionError

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

fn try_from(value: &IBig) -> Result<usize, ConversionError>

Performs the conversion.
Source§

impl TryFrom<IBig> for UBig

Source§

type Error = ConversionError

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

fn try_from(x: IBig) -> Result<UBig, ConversionError>

Performs the conversion.
Source§

impl TryFrom<IBig> for i128

Source§

type Error = ConversionError

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

fn try_from(value: IBig) -> Result<i128, ConversionError>

Performs the conversion.
Source§

impl TryFrom<IBig> for i16

Source§

type Error = ConversionError

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

fn try_from(value: IBig) -> Result<i16, ConversionError>

Performs the conversion.
Source§

impl TryFrom<IBig> for i32

Source§

type Error = ConversionError

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

fn try_from(value: IBig) -> Result<i32, ConversionError>

Performs the conversion.
Source§

impl TryFrom<IBig> for i64

Source§

type Error = ConversionError

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

fn try_from(value: IBig) -> Result<i64, ConversionError>

Performs the conversion.
Source§

impl TryFrom<IBig> for i8

Source§

type Error = ConversionError

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

fn try_from(value: IBig) -> Result<i8, ConversionError>

Performs the conversion.
Source§

impl TryFrom<IBig> for isize

Source§

type Error = ConversionError

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

fn try_from(value: IBig) -> Result<isize, ConversionError>

Performs the conversion.
Source§

impl TryFrom<IBig> for u128

Source§

type Error = ConversionError

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

fn try_from(value: IBig) -> Result<u128, ConversionError>

Performs the conversion.
Source§

impl TryFrom<IBig> for u16

Source§

type Error = ConversionError

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

fn try_from(value: IBig) -> Result<u16, ConversionError>

Performs the conversion.
Source§

impl TryFrom<IBig> for u32

Source§

type Error = ConversionError

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

fn try_from(value: IBig) -> Result<u32, ConversionError>

Performs the conversion.
Source§

impl TryFrom<IBig> for u64

Source§

type Error = ConversionError

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

fn try_from(value: IBig) -> Result<u64, ConversionError>

Performs the conversion.
Source§

impl TryFrom<IBig> for u8

Source§

type Error = ConversionError

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

fn try_from(value: IBig) -> Result<u8, ConversionError>

Performs the conversion.
Source§

impl TryFrom<IBig> for usize

Source§

type Error = ConversionError

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

fn try_from(value: IBig) -> Result<usize, ConversionError>

Performs the conversion.
Source§

impl TryFrom<f32> for IBig

Source§

type Error = ConversionError

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

fn try_from(value: f32) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<f64> for IBig

Source§

type Error = ConversionError

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

fn try_from(value: f64) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl UnsignedAbs for &IBig

Source§

impl UnsignedAbs for IBig

Source§

impl UpperHex for IBig

Source§

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

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

impl Zero for IBig

Source§

fn zero() -> Self

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 Zeroize for IBig

Source§

fn zeroize(&mut self)

Zero out this object from memory using Rust intrinsics which ensure the zeroization operation is not “optimized away” by the compiler.
Source§

impl Eq for IBig

Source§

impl StructuralPartialEq for IBig

Auto Trait Implementations§

§

impl Freeze for IBig

§

impl RefUnwindSafe for IBig

§

impl Send for IBig

§

impl Sync for IBig

§

impl Unpin for IBig

§

impl UnwindSafe for IBig

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<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<Borrowed> SampleBorrow<Borrowed> for Borrowed
where Borrowed: SampleUniform,

Source§

fn borrow(&self) -> &Borrowed

Immutably borrows from an owned value. See Borrow::borrow
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, 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<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

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, Base> RefNum<Base> for T
where T: NumOps<Base, Base> + for<'r> NumOps<&'r Base, Base>,