Skip to main content

IBig

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 from_le_bytes(bytes: &[u8]) -> IBig

Construct from signed little-endian bytes.

The negative number must be represented in a two’s complement format, assuming the top bits are all ones. The number is assumed negative when the top bit of the top byte is set.

§Examples
assert_eq!(IBig::from_le_bytes(&[1, 2, 0xf3]), IBig::from(0xfff30201u32 as i32));
Source

pub fn from_be_bytes(bytes: &[u8]) -> IBig

Construct from big-endian bytes.

The negative number must be represented in a two’s complement format, assuming the top bits are all ones. The number is assumed negative when the top bit of the top byte is set.

§Examples
assert_eq!(IBig::from_be_bytes(&[0xf3, 2, 1]), IBig::from(0xfff30201u32 as i32));
Source

pub fn to_le_bytes(&self) -> Box<[u8]>

Return little-endian bytes.

The negative number will be represented in a two’s complement format

§Examples
assert!(IBig::ZERO.to_le_bytes().is_empty());
assert_eq!(*IBig::from(0xfff30201u32 as i32).to_le_bytes(), [1, 2, 0xf3]);
Source

pub fn to_be_bytes(&self) -> Box<[u8]>

Return big-endian bytes.

The negative number will be represented in a two’s complement format

§Examples
assert!(IBig::ZERO.to_be_bytes().is_empty());
assert_eq!(*IBig::from(0xfff30201u32 as i32).to_be_bytes(), [0xf3, 2, 1]);
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

pub const fn as_ubig(&self) -> Option<&UBig>

Regard the number as a UBig number and return a reference of UBig type.

The conversion is only successful when the number is positive

§Examples
assert_eq!(IBig::from(123).as_ubig(), Some(&UBig::from(123u8)));
assert_eq!(IBig::from(-123).as_ubig(), None);
Source§

impl IBig

Source

pub fn is_multiple_of(&self, divisor: &IBig) -> 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: u128) -> 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: IBig

IBig with value 0

Source

pub const ONE: IBig

IBig with value 1

Source

pub const NEG_ONE: IBig

IBig with value -1

Source

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

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) -> IBig

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: u128) -> IBig

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 for IBig

Source§

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

👎Deprecated since 0.5.0:

AbsEq will be moved in AbsOrd in v0.5

Source§

impl AbsEq<IBig> for UBig

Source§

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

👎Deprecated since 0.5.0:

AbsEq will be moved in AbsOrd in v0.5

Source§

impl AbsEq<UBig> for IBig

Source§

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

👎Deprecated since 0.5.0:

AbsEq will be moved in AbsOrd in v0.5

Source§

impl AbsOrd for IBig

Source§

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

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 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<'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<'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<'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<'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<'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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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, '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<'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 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<'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 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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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 AddAssign for IBig

Source§

fn add_assign(&mut self, rhs: 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<&i8> for IBig

Source§

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

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<&i128> for IBig

Source§

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

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<&u8> for IBig

Source§

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

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<&u128> for IBig

Source§

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

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<i8> for IBig

Source§

fn add_assign(&mut self, rhs: i8)

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<i128> for IBig

Source§

fn add_assign(&mut self, rhs: i128)

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<u8> for IBig

Source§

fn add_assign(&mut self, rhs: u8)

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<u128> for IBig

Source§

fn add_assign(&mut self, rhs: u128)

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 Binary for IBig

Source§

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

Formats the value using the given formatter. 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<'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<'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<'r> BitAnd<&'r IBig> for UBig

Source§

type Output = UBig

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

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

Source§

type Output = UBig

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

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

Source§

type Output = UBig

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

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

Source§

type Output = UBig

The resulting type after applying the & operator.
Source§

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

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 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 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 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 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 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 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 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 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 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 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, '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 u8> for IBig

Source§

type Output = u8

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

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

Source§

type Output = u8

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

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

Source§

type Output = u16

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

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

Source§

type Output = u16

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

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

Source§

type Output = u32

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

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

Source§

type Output = u32

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

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

Source§

type Output = u64

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

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

Source§

type Output = u64

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

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

Source§

type Output = u128

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

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

Source§

type Output = u128

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

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

Source§

type Output = usize

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

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

Source§

type Output = usize

The resulting type after applying the & operator.
Source§

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

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 BitAnd<IBig> for UBig

Source§

type Output = UBig

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

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

Source§

type Output = UBig

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

impl BitAnd<UBig> for IBig

Source§

type Output = UBig

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

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

Source§

type Output = UBig

The resulting type after applying the & operator.
Source§

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

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<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<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<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<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<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<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<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<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<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<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<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<u8> for IBig

Source§

type Output = u8

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

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

Source§

type Output = u8

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

impl BitAnd<u16> for IBig

Source§

type Output = u16

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

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

Source§

type Output = u16

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

impl BitAnd<u32> for IBig

Source§

type Output = u32

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

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

Source§

type Output = u32

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

impl BitAnd<u64> for IBig

Source§

type Output = u64

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

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

Source§

type Output = u64

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

impl BitAnd<u128> for IBig

Source§

type Output = u128

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

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

Source§

type Output = u128

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

impl BitAnd<usize> for IBig

Source§

type Output = usize

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

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

Source§

type Output = usize

The resulting type after applying the & operator.
Source§

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

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 BitAndAssign<&IBig> for IBig

Source§

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

Performs the &= operation. Read more
Source§

impl BitAndAssign<&IBig> for UBig

Source§

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

Performs the &= operation. Read more
Source§

impl BitAndAssign<&UBig> for IBig

Source§

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

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<&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<&i128> for IBig

Source§

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

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<&u8> for IBig

Source§

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

Performs the &= operation. Read more
Source§

impl BitAndAssign<&u16> for IBig

Source§

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

Performs the &= operation. Read more
Source§

impl BitAndAssign<&u32> for IBig

Source§

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

Performs the &= operation. Read more
Source§

impl BitAndAssign<&u64> for IBig

Source§

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

Performs the &= operation. Read more
Source§

impl BitAndAssign<&u128> for IBig

Source§

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

Performs the &= operation. Read more
Source§

impl BitAndAssign<&usize> for IBig

Source§

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

Performs the &= operation. Read more
Source§

impl BitAndAssign<IBig> for UBig

Source§

fn bitand_assign(&mut self, rhs: IBig)

Performs the &= operation. Read more
Source§

impl BitAndAssign<UBig> for IBig

Source§

fn bitand_assign(&mut self, rhs: UBig)

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<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<i128> for IBig

Source§

fn bitand_assign(&mut self, rhs: i128)

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<u8> for IBig

Source§

fn bitand_assign(&mut self, rhs: u8)

Performs the &= operation. Read more
Source§

impl BitAndAssign<u16> for IBig

Source§

fn bitand_assign(&mut self, rhs: u16)

Performs the &= operation. Read more
Source§

impl BitAndAssign<u32> for IBig

Source§

fn bitand_assign(&mut self, rhs: u32)

Performs the &= operation. Read more
Source§

impl BitAndAssign<u64> for IBig

Source§

fn bitand_assign(&mut self, rhs: u64)

Performs the &= operation. Read more
Source§

impl BitAndAssign<u128> for IBig

Source§

fn bitand_assign(&mut self, rhs: u128)

Performs the &= operation. Read more
Source§

impl BitAndAssign<usize> for IBig

Source§

fn bitand_assign(&mut self, rhs: usize)

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<'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<'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<'r> BitOr<&'r IBig> for UBig

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 UBig

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 UBig> for IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &UBig) -> 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 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 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 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 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 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 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 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 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 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 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, '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 u8> for IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &usize) -> 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 BitOr<IBig> for UBig

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 UBig

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<UBig> for IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: UBig) -> 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<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<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<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<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<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<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<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<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<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<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<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<u8> for IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

impl BitOr<u16> for IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

impl BitOr<u32> for IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

impl BitOr<u64> for IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

impl BitOr<u128> for IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

impl BitOr<usize> for IBig

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the | operator.
Source§

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

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 BitOrAssign<&IBig> for IBig

Source§

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

Performs the |= operation. Read more
Source§

impl BitOrAssign<&UBig> for IBig

Source§

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

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<&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<&i128> for IBig

Source§

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

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<&u8> for IBig

Source§

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

Performs the |= operation. Read more
Source§

impl BitOrAssign<&u16> for IBig

Source§

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

Performs the |= operation. Read more
Source§

impl BitOrAssign<&u32> for IBig

Source§

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

Performs the |= operation. Read more
Source§

impl BitOrAssign<&u64> for IBig

Source§

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

Performs the |= operation. Read more
Source§

impl BitOrAssign<&u128> for IBig

Source§

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

Performs the |= operation. Read more
Source§

impl BitOrAssign<&usize> for IBig

Source§

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

Performs the |= operation. Read more
Source§

impl BitOrAssign<UBig> for IBig

Source§

fn bitor_assign(&mut self, rhs: UBig)

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<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<i128> for IBig

Source§

fn bitor_assign(&mut self, rhs: i128)

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<u8> for IBig

Source§

fn bitor_assign(&mut self, rhs: u8)

Performs the |= operation. Read more
Source§

impl BitOrAssign<u16> for IBig

Source§

fn bitor_assign(&mut self, rhs: u16)

Performs the |= operation. Read more
Source§

impl BitOrAssign<u32> for IBig

Source§

fn bitor_assign(&mut self, rhs: u32)

Performs the |= operation. Read more
Source§

impl BitOrAssign<u64> for IBig

Source§

fn bitor_assign(&mut self, rhs: u64)

Performs the |= operation. Read more
Source§

impl BitOrAssign<u128> for IBig

Source§

fn bitor_assign(&mut self, rhs: u128)

Performs the |= operation. Read more
Source§

impl BitOrAssign<usize> for IBig

Source§

fn bitor_assign(&mut self, rhs: usize)

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 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<'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<'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<'r> BitXor<&'r IBig> for UBig

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 UBig

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 UBig> for IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &UBig) -> 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 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 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 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 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 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 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 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 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 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 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, '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 u8> for IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &usize) -> 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 BitXor<IBig> for UBig

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 UBig

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<UBig> for IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: UBig) -> 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<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<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<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<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<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<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<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<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<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<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<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<u8> for IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

impl BitXor<u16> for IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

impl BitXor<u32> for IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

impl BitXor<u64> for IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

impl BitXor<u128> for IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

impl BitXor<usize> for IBig

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

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

Source§

type Output = IBig

The resulting type after applying the ^ operator.
Source§

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

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 BitXorAssign<&IBig> for IBig

Source§

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

Performs the ^= operation. Read more
Source§

impl BitXorAssign<&UBig> for IBig

Source§

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

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<&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<&i128> for IBig

Source§

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

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<&u8> for IBig

Source§

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

Performs the ^= operation. Read more
Source§

impl BitXorAssign<&u16> for IBig

Source§

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

Performs the ^= operation. Read more
Source§

impl BitXorAssign<&u32> for IBig

Source§

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

Performs the ^= operation. Read more
Source§

impl BitXorAssign<&u64> for IBig

Source§

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

Performs the ^= operation. Read more
Source§

impl BitXorAssign<&u128> for IBig

Source§

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

Performs the ^= operation. Read more
Source§

impl BitXorAssign<&usize> for IBig

Source§

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

Performs the ^= operation. Read more
Source§

impl BitXorAssign<UBig> for IBig

Source§

fn bitxor_assign(&mut self, rhs: UBig)

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<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<i128> for IBig

Source§

fn bitxor_assign(&mut self, rhs: i128)

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<u8> for IBig

Source§

fn bitxor_assign(&mut self, rhs: u8)

Performs the ^= operation. Read more
Source§

impl BitXorAssign<u16> for IBig

Source§

fn bitxor_assign(&mut self, rhs: u16)

Performs the ^= operation. Read more
Source§

impl BitXorAssign<u32> for IBig

Source§

fn bitxor_assign(&mut self, rhs: u32)

Performs the ^= operation. Read more
Source§

impl BitXorAssign<u64> for IBig

Source§

fn bitxor_assign(&mut self, rhs: u64)

Performs the ^= operation. Read more
Source§

impl BitXorAssign<u128> for IBig

Source§

fn bitxor_assign(&mut self, rhs: u128)

Performs the ^= operation. Read more
Source§

impl BitXorAssign<usize> for IBig

Source§

fn bitxor_assign(&mut self, rhs: usize)

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<(), Error>

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

impl Default for IBig

Source§

fn default() -> IBig

Default value: 0.

Source§

impl Display for IBig

Source§

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

Formats the value using the given formatter. 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> 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<'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<'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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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, '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 Div<&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 Div<&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> 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 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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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 DivAssign for IBig

Source§

fn div_assign(&mut self, rhs: IBig)

Performs the /= operation. Read more
Source§

impl DivAssign<&ConstDivisor> for IBig

Source§

fn div_assign(&mut self, rhs: &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<&i8> for IBig

Source§

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

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<&i128> for IBig

Source§

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

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<&u8> for IBig

Source§

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

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<&u128> for IBig

Source§

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

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<i8> for IBig

Source§

fn div_assign(&mut self, rhs: i8)

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<i128> for IBig

Source§

fn div_assign(&mut self, rhs: i128)

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<u8> for IBig

Source§

fn div_assign(&mut self, rhs: u8)

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<u128> for IBig

Source§

fn div_assign(&mut self, rhs: u128)

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 DivEuclid for IBig

Source§

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

Source§

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

Source§

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

Source§

impl DivRem for IBig

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

impl DivRem<&ConstDivisor> for IBig

Source§

impl DivRem<&ConstDivisor> for &IBig

Source§

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

Source§

impl DivRem<IBig> for UBig

Source§

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

Source§

impl DivRem<UBig> for IBig

Source§

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

Source§

impl DivRem<i8> for IBig

Source§

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

Source§

impl DivRem<i16> for IBig

Source§

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

Source§

impl DivRem<i32> for IBig

Source§

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

Source§

impl DivRem<i64> for IBig

Source§

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

Source§

impl DivRem<i128> for IBig

Source§

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

Source§

impl DivRem<isize> for IBig

Source§

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

Source§

impl DivRem<u8> for IBig

Source§

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

Source§

impl DivRem<u16> for IBig

Source§

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

Source§

impl DivRem<u32> for IBig

Source§

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

Source§

impl DivRem<u64> for IBig

Source§

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

Source§

impl DivRem<u128> for IBig

Source§

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

Source§

impl DivRem<usize> for IBig

Source§

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

Source§

impl DivRemAssign for IBig

Source§

impl DivRemAssign<&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<&i8> for IBig

Source§

type OutputRem = i8

Source§

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

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<&i128> for IBig

Source§

type OutputRem = i128

Source§

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

Source§

impl DivRemAssign<&isize> for IBig

Source§

impl DivRemAssign<&u8> for IBig

Source§

type OutputRem = u8

Source§

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

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<&u128> for IBig

Source§

type OutputRem = u128

Source§

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

Source§

impl DivRemAssign<&usize> for IBig

Source§

impl DivRemAssign<i8> for IBig

Source§

type OutputRem = i8

Source§

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

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<i128> for IBig

Source§

impl DivRemAssign<isize> for IBig

Source§

impl DivRemAssign<u8> for IBig

Source§

type OutputRem = u8

Source§

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

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<u128> for IBig

Source§

impl DivRemAssign<usize> for IBig

Source§

impl DivRemEuclid for IBig

Source§

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

Source§

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

Source§

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

Source§

impl Eq 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 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<'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<'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<'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 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 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, '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<'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 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<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<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<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 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<i8> for IBig

Source§

fn from(value: i8) -> 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<i128> for IBig

Source§

fn from(value: i128) -> 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<u8> for IBig

Source§

fn from(value: u8) -> 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<u128> for IBig

Source§

fn from(value: u128) -> 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 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 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<'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<'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<'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 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 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, '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<'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 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<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<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<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 Hash for IBig

Source§

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

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

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

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

impl<'a> IntoRing<'a, ConstDivisor> for IBig

Source§

impl LowerHex for IBig

Source§

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

Formats the value using the given formatter. 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<'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<'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<'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<'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<'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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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, '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<'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 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<'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 Mul<IBig> for Sign

Source§

type Output = IBig

The resulting type after applying the * operator.
Source§

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

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) -> <IBig as Mul<Sign>>::Output

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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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 MulAssign for IBig

Source§

fn mul_assign(&mut self, rhs: 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<&i8> for IBig

Source§

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

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<&i128> for IBig

Source§

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

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<&u8> for IBig

Source§

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

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<&u128> for IBig

Source§

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

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<i8> for IBig

Source§

fn mul_assign(&mut self, rhs: i8)

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<i128> for IBig

Source§

fn mul_assign(&mut self, rhs: i128)

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<u8> for IBig

Source§

fn mul_assign(&mut self, rhs: u8)

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<u128> for IBig

Source§

fn mul_assign(&mut self, rhs: u128)

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 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 NumHash for IBig

Source§

fn num_hash<H>(&self, state: &mut H)
where H: Hasher,

Consistent Hash::hash on different numeric types. Read more
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 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<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<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<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<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<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<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<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<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<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<(), Error>

Formats the value using the given formatter. Read more
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 (const: unstable) · Source§

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

Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§

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

Compares and returns the minimum of two values. Read more
1.50.0 (const: unstable) · 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 (const: unstable) · 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 (const: unstable) · 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 (const: unstable) · 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 (const: unstable) · 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 (const: unstable) · 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<T> Product<T> for IBig
where IBig: Mul<T, Output = IBig>,

Source§

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

Takes an iterator and generates Self from the elements by multiplying the items.
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> 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<'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<'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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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, '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 Rem<&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 Rem<&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> 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 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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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 RemAssign for IBig

Source§

fn rem_assign(&mut self, rhs: IBig)

Performs the %= operation. Read more
Source§

impl RemAssign<&ConstDivisor> for IBig

Source§

fn rem_assign(&mut self, rhs: &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 RemEuclid for IBig

Source§

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

Source§

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

Source§

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

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 SquareRoot for IBig

Source§

impl StructuralPartialEq for IBig

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<'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<'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<'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<'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<'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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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, '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<'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 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<'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 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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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<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 SubAssign for IBig

Source§

fn sub_assign(&mut self, rhs: 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<&i8> for IBig

Source§

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

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<&i128> for IBig

Source§

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

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<&u8> for IBig

Source§

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

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<&u128> for IBig

Source§

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

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<i8> for IBig

Source§

fn sub_assign(&mut self, rhs: i8)

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<i128> for IBig

Source§

fn sub_assign(&mut self, rhs: i128)

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<u8> for IBig

Source§

fn sub_assign(&mut self, rhs: u8)

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<u128> for IBig

Source§

fn sub_assign(&mut self, rhs: u128)

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<T> Sum<T> for IBig
where IBig: Add<T, Output = IBig>,

Source§

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

Takes an iterator and generates Self from the elements by “summing up” the items.
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<f32> for IBig

Source§

type Error = ConversionError

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

fn try_from(value: f32) -> Result<IBig, <IBig as TryFrom<f32>>::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<IBig, <IBig as TryFrom<f64>>::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<(), Error>

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for IBig

§

impl RefUnwindSafe for IBig

§

impl Send for IBig

§

impl Sync for IBig

§

impl Unpin for IBig

§

impl UnsafeUnpin 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<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<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.