Struct dashu::integer::IBig

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

An signed arbitrary precision integer.

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

§Parsing and printing

There are four ways to create an IBig instance:

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

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

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

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

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

§Memory

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

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

Implementations§

source§

impl IBig

source

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

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

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

For 0, it returns None.

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

Const since Rust 1.64

source

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

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

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

For -1, it returns None.

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

Const since Rust 1.64

source§

impl IBig

source

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

Convert to f32.

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

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

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

Convert to f64.

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

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

impl IBig

source

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

§

type Output = IBig

source§

fn abs(self) -> IBig

source§

impl Abs for IBig

§

type Output = IBig

source§

fn abs(self) -> IBig

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 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<R, const B: u64> AbsOrd<FBig<R, B>> for IBig
where R: Round,

source§

fn abs_cmp(&self, other: &FBig<R, B>) -> Ordering

source§

impl<R, const B: u64> AbsOrd<IBig> for FBig<R, B>
where R: Round,

source§

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

source§

impl AbsOrd<IBig> for RBig

source§

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

source§

impl AbsOrd<IBig> for Relaxed

source§

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

source§

impl<const B: u64> AbsOrd<IBig> for Repr<B>

source§

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

source§

impl AbsOrd<IBig> for UBig

source§

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

source§

impl AbsOrd<RBig> for IBig

source§

fn abs_cmp(&self, other: &RBig) -> Ordering

source§

impl AbsOrd<Relaxed> for IBig

source§

fn abs_cmp(&self, other: &Relaxed) -> Ordering

source§

impl<const B: u64> AbsOrd<Repr<B>> for IBig

source§

fn abs_cmp(&self, other: &Repr<B>) -> Ordering

source§

impl AbsOrd<UBig> for IBig

source§

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

source§

impl AbsOrd for IBig

source§

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

source§

impl<'l, 'r, R, const B: u64> Add<&'r FBig<R, B>> for &'l IBig
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> <&'l IBig as Add<&'r FBig<R, B>>>::Output

Performs the + operation. Read more
source§

impl<'r, R, const B: u64> Add<&'r FBig<R, B>> for IBig
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> <IBig as Add<&'r FBig<R, B>>>::Output

Performs the + operation. Read more
source§

impl<'l, 'r, R, const B: u64> Add<&'r IBig> for &'l FBig<R, B>
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &IBig) -> <&'l FBig<R, B> as Add<&'r IBig>>::Output

Performs the + operation. Read more
source§

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

§

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 RBig

§

type Output = RBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = Relaxed

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

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, R, const B: u64> Add<&'r IBig> for FBig<R, B>
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &IBig) -> <FBig<R, B> as Add<&'r IBig>>::Output

Performs the + operation. Read more
source§

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

§

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 RBig

§

type Output = RBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = Relaxed

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

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 RBig> for &'l IBig

§

type Output = RBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = RBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = Relaxed

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = Relaxed

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

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, const B: u64> Add<FBig<R, B>> for &'l IBig
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> <&'l IBig as Add<FBig<R, B>>>::Output

Performs the + operation. Read more
source§

impl<R, const B: u64> Add<FBig<R, B>> for IBig
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> <IBig as Add<FBig<R, B>>>::Output

Performs the + operation. Read more
source§

impl<'l, R, const B: u64> Add<IBig> for &'l FBig<R, B>
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: IBig) -> <&'l FBig<R, B> as Add<IBig>>::Output

Performs the + operation. Read more
source§

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

§

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 RBig

§

type Output = RBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = Relaxed

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

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, const B: u64> Add<IBig> for FBig<R, B>
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: IBig) -> <FBig<R, B> as Add<IBig>>::Output

Performs the + operation. Read more
source§

impl Add<IBig> for RBig

§

type Output = RBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<IBig> for Relaxed

§

type Output = Relaxed

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<IBig> for UBig

§

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<RBig> for &'l IBig

§

type Output = RBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<RBig> for IBig

§

type Output = RBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = Relaxed

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<Relaxed> for IBig

§

type Output = Relaxed

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<Rounding> for &IBig

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<Rounding> for IBig

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<UBig> for IBig

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<i128> for IBig

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<i16> for IBig

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<i32> for IBig

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<i64> for IBig

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<i8> for IBig

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<isize> for IBig

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<u128> for IBig

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<u16> for IBig

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<u32> for IBig

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<u64> for IBig

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<u8> for IBig

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<usize> for IBig

§

type Output = IBig

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add for IBig

§

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, const B: u64> AddAssign<&IBig> for FBig<R, B>
where R: Round,

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

source§

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

Performs the += operation. Read more
source§

impl AddAssign<&i16> for IBig

source§

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

Performs the += operation. Read more
source§

impl AddAssign<&i32> for IBig

source§

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

Performs the += operation. Read more
source§

impl AddAssign<&i64> for IBig

source§

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

Performs the += operation. Read more
source§

impl AddAssign<&i8> for IBig

source§

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

Performs the += operation. Read more
source§

impl AddAssign<&isize> for IBig

source§

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

Performs the += operation. Read more
source§

impl AddAssign<&u128> for IBig

source§

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

Performs the += operation. Read more
source§

impl AddAssign<&u16> for IBig

source§

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

Performs the += operation. Read more
source§

impl AddAssign<&u32> for IBig

source§

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

Performs the += operation. Read more
source§

impl AddAssign<&u64> for IBig

source§

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

Performs the += operation. Read more
source§

impl AddAssign<&u8> for IBig

source§

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

Performs the += operation. Read more
source§

impl AddAssign<&usize> for IBig

source§

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

Performs the += operation. Read more
source§

impl<R, const B: u64> AddAssign<IBig> for FBig<R, B>
where R: Round,

source§

fn add_assign(&mut self, rhs: IBig)

Performs the += operation. Read more
source§

impl AddAssign<Rounding> for IBig

source§

fn add_assign(&mut self, rhs: Rounding)

Performs the += operation. Read more
source§

impl AddAssign<UBig> for IBig

source§

fn add_assign(&mut self, rhs: UBig)

Performs the += operation. Read more
source§

impl AddAssign<i128> for IBig

source§

fn add_assign(&mut self, rhs: i128)

Performs the += operation. Read more
source§

impl AddAssign<i16> for IBig

source§

fn add_assign(&mut self, rhs: i16)

Performs the += operation. Read more
source§

impl AddAssign<i32> for IBig

source§

fn add_assign(&mut self, rhs: i32)

Performs the += operation. Read more
source§

impl AddAssign<i64> for IBig

source§

fn add_assign(&mut self, rhs: i64)

Performs the += operation. Read more
source§

impl AddAssign<i8> for IBig

source§

fn add_assign(&mut self, rhs: i8)

Performs the += operation. Read more
source§

impl AddAssign<isize> for IBig

source§

fn add_assign(&mut self, rhs: isize)

Performs the += operation. Read more
source§

impl AddAssign<u128> for IBig

source§

fn add_assign(&mut self, rhs: u128)

Performs the += operation. Read more
source§

impl AddAssign<u16> for IBig

source§

fn add_assign(&mut self, rhs: u16)

Performs the += operation. Read more
source§

impl AddAssign<u32> for IBig

source§

fn add_assign(&mut self, rhs: u32)

Performs the += operation. Read more
source§

impl AddAssign<u64> for IBig

source§

fn add_assign(&mut self, rhs: u64)

Performs the += operation. Read more
source§

impl AddAssign<u8> for IBig

source§

fn add_assign(&mut self, rhs: u8)

Performs the += operation. Read more
source§

impl AddAssign<usize> for IBig

source§

fn add_assign(&mut self, rhs: usize)

Performs the += operation. Read more
source§

impl AddAssign for IBig

source§

fn add_assign(&mut self, rhs: IBig)

Performs the += operation. Read more
source§

impl Binary for IBig

source§

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

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

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

§

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

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitAnd<i128> for IBig

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitAnd<i16> for IBig

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitAnd<i32> for IBig

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitAnd<i64> for IBig

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitAnd<i8> for IBig

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitAnd<isize> for IBig

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitAnd for IBig

§

type Output = IBig

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitAndAssign<&IBig> for IBig

source§

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

Performs the &= operation. Read more
source§

impl BitAndAssign<&i128> for IBig

source§

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

Performs the &= operation. Read more
source§

impl BitAndAssign<&i16> for IBig

source§

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

Performs the &= operation. Read more
source§

impl BitAndAssign<&i32> for IBig

source§

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

Performs the &= operation. Read more
source§

impl BitAndAssign<&i64> for IBig

source§

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

Performs the &= operation. Read more
source§

impl BitAndAssign<&i8> for IBig

source§

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

Performs the &= operation. Read more
source§

impl BitAndAssign<&isize> for IBig

source§

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

Performs the &= operation. Read more
source§

impl BitAndAssign<i128> for IBig

source§

fn bitand_assign(&mut self, rhs: i128)

Performs the &= operation. Read more
source§

impl BitAndAssign<i16> for IBig

source§

fn bitand_assign(&mut self, rhs: i16)

Performs the &= operation. Read more
source§

impl BitAndAssign<i32> for IBig

source§

fn bitand_assign(&mut self, rhs: i32)

Performs the &= operation. Read more
source§

impl BitAndAssign<i64> for IBig

source§

fn bitand_assign(&mut self, rhs: i64)

Performs the &= operation. Read more
source§

impl BitAndAssign<i8> for IBig

source§

fn bitand_assign(&mut self, rhs: i8)

Performs the &= operation. Read more
source§

impl BitAndAssign<isize> for IBig

source§

fn bitand_assign(&mut self, rhs: isize)

Performs the &= operation. Read more
source§

impl BitAndAssign for IBig

source§

fn bitand_assign(&mut self, rhs: IBig)

Performs the &= operation. Read more
source§

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

§

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

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitOr<i128> for IBig

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitOr<i16> for IBig

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitOr<i32> for IBig

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitOr<i64> for IBig

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitOr<i8> for IBig

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitOr<isize> for IBig

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitOr for IBig

§

type Output = IBig

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitOrAssign<&IBig> for IBig

source§

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

Performs the |= operation. Read more
source§

impl BitOrAssign<&i128> for IBig

source§

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

Performs the |= operation. Read more
source§

impl BitOrAssign<&i16> for IBig

source§

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

Performs the |= operation. Read more
source§

impl BitOrAssign<&i32> for IBig

source§

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

Performs the |= operation. Read more
source§

impl BitOrAssign<&i64> for IBig

source§

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

Performs the |= operation. Read more
source§

impl BitOrAssign<&i8> for IBig

source§

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

Performs the |= operation. Read more
source§

impl BitOrAssign<&isize> for IBig

source§

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

Performs the |= operation. Read more
source§

impl BitOrAssign<i128> for IBig

source§

fn bitor_assign(&mut self, rhs: i128)

Performs the |= operation. Read more
source§

impl BitOrAssign<i16> for IBig

source§

fn bitor_assign(&mut self, rhs: i16)

Performs the |= operation. Read more
source§

impl BitOrAssign<i32> for IBig

source§

fn bitor_assign(&mut self, rhs: i32)

Performs the |= operation. Read more
source§

impl BitOrAssign<i64> for IBig

source§

fn bitor_assign(&mut self, rhs: i64)

Performs the |= operation. Read more
source§

impl BitOrAssign<i8> for IBig

source§

fn bitor_assign(&mut self, rhs: i8)

Performs the |= operation. Read more
source§

impl BitOrAssign<isize> for IBig

source§

fn bitor_assign(&mut self, rhs: isize)

Performs the |= operation. Read more
source§

impl BitOrAssign for IBig

source§

fn bitor_assign(&mut self, rhs: IBig)

Performs the |= operation. Read more
source§

impl BitTest for IBig

source§

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

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

fn bit_len(&self) -> usize

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

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

§

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

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl BitXor<i128> for IBig

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl BitXor<i16> for IBig

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl BitXor<i32> for IBig

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl BitXor<i64> for IBig

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl BitXor<i8> for IBig

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl BitXor<isize> for IBig

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl BitXor for IBig

§

type Output = IBig

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl BitXorAssign<&IBig> for IBig

source§

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

Performs the ^= operation. Read more
source§

impl BitXorAssign<&i128> for IBig

source§

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

Performs the ^= operation. Read more
source§

impl BitXorAssign<&i16> for IBig

source§

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

Performs the ^= operation. Read more
source§

impl BitXorAssign<&i32> for IBig

source§

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

Performs the ^= operation. Read more
source§

impl BitXorAssign<&i64> for IBig

source§

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

Performs the ^= operation. Read more
source§

impl BitXorAssign<&i8> for IBig

source§

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

Performs the ^= operation. Read more
source§

impl BitXorAssign<&isize> for IBig

source§

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

Performs the ^= operation. Read more
source§

impl BitXorAssign<i128> for IBig

source§

fn bitxor_assign(&mut self, rhs: i128)

Performs the ^= operation. Read more
source§

impl BitXorAssign<i16> for IBig

source§

fn bitxor_assign(&mut self, rhs: i16)

Performs the ^= operation. Read more
source§

impl BitXorAssign<i32> for IBig

source§

fn bitxor_assign(&mut self, rhs: i32)

Performs the ^= operation. Read more
source§

impl BitXorAssign<i64> for IBig

source§

fn bitxor_assign(&mut self, rhs: i64)

Performs the ^= operation. Read more
source§

impl BitXorAssign<i8> for IBig

source§

fn bitxor_assign(&mut self, rhs: i8)

Performs the ^= operation. Read more
source§

impl BitXorAssign<isize> for IBig

source§

fn bitxor_assign(&mut self, rhs: isize)

Performs the ^= operation. Read more
source§

impl BitXorAssign for IBig

source§

fn bitxor_assign(&mut self, rhs: IBig)

Performs the ^= operation. Read more
source§

impl Clone for IBig

source§

fn clone(&self) -> IBig

Returns a copy 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

§

type Output = IBig

source§

fn cbrt(&self) -> 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<'l, 'r> Div<&'r ConstDivisor> for &'l IBig

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'l, 'r, R, const B: u64> Div<&'r FBig<R, B>> for &'l IBig
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> <&'l IBig as Div<&'r FBig<R, B>>>::Output

Performs the / operation. Read more
source§

impl<'r, R, const B: u64> Div<&'r FBig<R, B>> for IBig
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> <IBig as Div<&'r FBig<R, B>>>::Output

Performs the / operation. Read more
source§

impl<'l, 'r, R, const B: u64> Div<&'r IBig> for &'l FBig<R, B>
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &IBig) -> <&'l FBig<R, B> as Div<&'r IBig>>::Output

Performs the / operation. Read more
source§

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

§

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 RBig

§

type Output = RBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = Relaxed

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

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, R, const B: u64> Div<&'r IBig> for FBig<R, B>
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &IBig) -> <FBig<R, B> as Div<&'r IBig>>::Output

Performs the / operation. Read more
source§

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

§

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 RBig

§

type Output = RBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = Relaxed

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

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, const B: u64> Div<FBig<R, B>> for &'l IBig
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> <&'l IBig as Div<FBig<R, B>>>::Output

Performs the / operation. Read more
source§

impl<R, const B: u64> Div<FBig<R, B>> for IBig
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> <IBig as Div<FBig<R, B>>>::Output

Performs the / operation. Read more
source§

impl<'l, R, const B: u64> Div<IBig> for &'l FBig<R, B>
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: IBig) -> <&'l FBig<R, B> as Div<IBig>>::Output

Performs the / operation. Read more
source§

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

§

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 RBig

§

type Output = RBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = Relaxed

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

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, const B: u64> Div<IBig> for FBig<R, B>
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: IBig) -> <FBig<R, B> as Div<IBig>>::Output

Performs the / operation. Read more
source§

impl Div<IBig> for RBig

§

type Output = RBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<IBig> for Relaxed

§

type Output = Relaxed

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<IBig> for UBig

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<UBig> for IBig

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<i128> for IBig

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<i16> for IBig

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<i32> for IBig

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<i64> for IBig

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<i8> for IBig

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<isize> for IBig

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<u128> for IBig

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<u16> for IBig

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<u32> for IBig

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<u64> for IBig

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<u8> for IBig

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<usize> for IBig

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div for IBig

§

type Output = IBig

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

source§

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

Performs the /= operation. Read more
source§

impl<R, const B: u64> DivAssign<&IBig> for FBig<R, B>
where R: Round,

source§

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

Performs the /= operation. Read more
source§

impl DivAssign<&IBig> for IBig

source§

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

Performs the /= operation. Read more
source§

impl DivAssign<&UBig> for IBig

source§

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

Performs the /= operation. Read more
source§

impl DivAssign<&i128> for IBig

source§

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

Performs the /= operation. Read more
source§

impl DivAssign<&i16> for IBig

source§

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

Performs the /= operation. Read more
source§

impl DivAssign<&i32> for IBig

source§

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

Performs the /= operation. Read more
source§

impl DivAssign<&i64> for IBig

source§

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

Performs the /= operation. Read more
source§

impl DivAssign<&i8> for IBig

source§

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

Performs the /= operation. Read more
source§

impl DivAssign<&isize> for IBig

source§

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

Performs the /= operation. Read more
source§

impl DivAssign<&u128> for IBig

source§

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

Performs the /= operation. Read more
source§

impl DivAssign<&u16> for IBig

source§

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

Performs the /= operation. Read more
source§

impl DivAssign<&u32> for IBig

source§

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

Performs the /= operation. Read more
source§

impl DivAssign<&u64> for IBig

source§

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

Performs the /= operation. Read more
source§

impl DivAssign<&u8> for IBig

source§

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

Performs the /= operation. Read more
source§

impl DivAssign<&usize> for IBig

source§

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

Performs the /= operation. Read more
source§

impl<R, const B: u64> DivAssign<IBig> for FBig<R, B>
where R: Round,

source§

fn div_assign(&mut self, rhs: IBig)

Performs the /= operation. Read more
source§

impl DivAssign<UBig> for IBig

source§

fn div_assign(&mut self, rhs: UBig)

Performs the /= operation. Read more
source§

impl DivAssign<i128> for IBig

source§

fn div_assign(&mut self, rhs: i128)

Performs the /= operation. Read more
source§

impl DivAssign<i16> for IBig

source§

fn div_assign(&mut self, rhs: i16)

Performs the /= operation. Read more
source§

impl DivAssign<i32> for IBig

source§

fn div_assign(&mut self, rhs: i32)

Performs the /= operation. Read more
source§

impl DivAssign<i64> for IBig

source§

fn div_assign(&mut self, rhs: i64)

Performs the /= operation. Read more
source§

impl DivAssign<i8> for IBig

source§

fn div_assign(&mut self, rhs: i8)

Performs the /= operation. Read more
source§

impl DivAssign<isize> for IBig

source§

fn div_assign(&mut self, rhs: isize)

Performs the /= operation. Read more
source§

impl DivAssign<u128> for IBig

source§

fn div_assign(&mut self, rhs: u128)

Performs the /= operation. Read more
source§

impl DivAssign<u16> for IBig

source§

fn div_assign(&mut self, rhs: u16)

Performs the /= operation. Read more
source§

impl DivAssign<u32> for IBig

source§

fn div_assign(&mut self, rhs: u32)

Performs the /= operation. Read more
source§

impl DivAssign<u64> for IBig

source§

fn div_assign(&mut self, rhs: u64)

Performs the /= operation. Read more
source§

impl DivAssign<u8> for IBig

source§

fn div_assign(&mut self, rhs: u8)

Performs the /= operation. Read more
source§

impl DivAssign<usize> for IBig

source§

fn div_assign(&mut self, rhs: usize)

Performs the /= operation. Read more
source§

impl DivAssign for IBig

source§

fn div_assign(&mut self, rhs: IBig)

Performs the /= operation. Read more
source§

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

§

type Output = IBig

source§

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

source§

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

§

type Output = IBig

source§

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

source§

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

§

type Output = IBig

source§

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

source§

impl DivEuclid for IBig

§

type Output = IBig

source§

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

source§

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

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = IBig

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = UBig

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = IBig

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = UBig

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = IBig

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = IBig

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = i128

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = i128

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = i16

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = i16

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = i32

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = i32

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = i64

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = i64

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = i8

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = i8

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = isize

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = isize

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = u128

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = u128

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = u16

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = u16

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = u32

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = u32

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = u64

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = u64

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = u8

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = u8

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = usize

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = usize

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = IBig

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = UBig

source§

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

source§

impl DivRem<IBig> for UBig

§

type OutputDiv = IBig

§

type OutputRem = UBig

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = IBig

source§

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

source§

impl DivRem<UBig> for IBig

§

type OutputDiv = IBig

§

type OutputRem = IBig

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = i128

source§

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

source§

impl DivRem<i128> for IBig

§

type OutputDiv = IBig

§

type OutputRem = i128

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = i16

source§

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

source§

impl DivRem<i16> for IBig

§

type OutputDiv = IBig

§

type OutputRem = i16

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = i32

source§

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

source§

impl DivRem<i32> for IBig

§

type OutputDiv = IBig

§

type OutputRem = i32

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = i64

source§

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

source§

impl DivRem<i64> for IBig

§

type OutputDiv = IBig

§

type OutputRem = i64

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = i8

source§

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

source§

impl DivRem<i8> for IBig

§

type OutputDiv = IBig

§

type OutputRem = i8

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = isize

source§

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

source§

impl DivRem<isize> for IBig

§

type OutputDiv = IBig

§

type OutputRem = isize

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = u128

source§

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

source§

impl DivRem<u128> for IBig

§

type OutputDiv = IBig

§

type OutputRem = u128

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = u16

source§

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

source§

impl DivRem<u16> for IBig

§

type OutputDiv = IBig

§

type OutputRem = u16

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = u32

source§

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

source§

impl DivRem<u32> for IBig

§

type OutputDiv = IBig

§

type OutputRem = u32

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = u64

source§

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

source§

impl DivRem<u64> for IBig

§

type OutputDiv = IBig

§

type OutputRem = u64

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = u8

source§

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

source§

impl DivRem<u8> for IBig

§

type OutputDiv = IBig

§

type OutputRem = u8

source§

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

source§

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

§

type OutputDiv = IBig

§

type OutputRem = usize

source§

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

source§

impl DivRem<usize> for IBig

§

type OutputDiv = IBig

§

type OutputRem = usize

source§

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

source§

impl DivRem for IBig

§

type OutputDiv = IBig

§

type OutputRem = IBig

source§

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

source§

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

source§

impl DivRemAssign<&IBig> for IBig

§

type OutputRem = IBig

source§

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

source§

impl DivRemAssign<&i128> for IBig

§

type OutputRem = i128

source§

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

source§

impl DivRemAssign<&i16> for IBig

§

type OutputRem = i16

source§

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

source§

impl DivRemAssign<&i32> for IBig

§

type OutputRem = i32

source§

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

source§

impl DivRemAssign<&i64> for IBig

§

type OutputRem = i64

source§

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

source§

impl DivRemAssign<&i8> for IBig

§

type OutputRem = i8

source§

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

source§

impl DivRemAssign<&isize> for IBig

§

type OutputRem = isize

source§

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

source§

impl DivRemAssign<&u128> for IBig

§

type OutputRem = u128

source§

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

source§

impl DivRemAssign<&u16> for IBig

§

type OutputRem = u16

source§

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

source§

impl DivRemAssign<&u32> for IBig

§

type OutputRem = u32

source§

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

source§

impl DivRemAssign<&u64> for IBig

§

type OutputRem = u64

source§

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

source§

impl DivRemAssign<&u8> for IBig

§

type OutputRem = u8

source§

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

source§

impl DivRemAssign<&usize> for IBig

§

type OutputRem = usize

source§

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

source§

impl DivRemAssign<i128> for IBig

§

type OutputRem = i128

source§

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

source§

impl DivRemAssign<i16> for IBig

§

type OutputRem = i16

source§

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

source§

impl DivRemAssign<i32> for IBig

§

type OutputRem = i32

source§

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

source§

impl DivRemAssign<i64> for IBig

§

type OutputRem = i64

source§

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

source§

impl DivRemAssign<i8> for IBig

§

type OutputRem = i8

source§

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

source§

impl DivRemAssign<isize> for IBig

§

type OutputRem = isize

source§

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

source§

impl DivRemAssign<u128> for IBig

§

type OutputRem = u128

source§

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

source§

impl DivRemAssign<u16> for IBig

§

type OutputRem = u16

source§

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

source§

impl DivRemAssign<u32> for IBig

§

type OutputRem = u32

source§

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

source§

impl DivRemAssign<u64> for IBig

§

type OutputRem = u64

source§

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

source§

impl DivRemAssign<u8> for IBig

§

type OutputRem = u8

source§

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

source§

impl DivRemAssign<usize> for IBig

§

type OutputRem = usize

source§

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

source§

impl DivRemAssign for IBig

§

type OutputRem = IBig

source§

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

source§

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

source§

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

source§

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

source§

impl DivRemEuclid for IBig

source§

impl EstimatedLog2 for IBig

source§

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

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

fn log2_est(&self) -> f32

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

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

§

type OutputGcd = UBig

§

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

§

type OutputGcd = UBig

§

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

§

type OutputGcd = UBig

§

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

§

type OutputGcd = UBig

§

type OutputCoeff = IBig

source§

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

Calculate the greatest common divisor between the two operands, returns the common divisor g and the Bézout coefficients respectively. Read more
source§

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

§

type OutputGcd = UBig

§

type OutputCoeff = IBig

source§

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

Calculate the greatest common divisor between the two operands, returns the common divisor g and the Bézout coefficients respectively. Read more
source§

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

§

type OutputGcd = UBig

§

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

§

type OutputGcd = UBig

§

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

§

type OutputGcd = UBig

§

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

§

type OutputGcd = UBig

§

type OutputCoeff = IBig

source§

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

Calculate the greatest common divisor between the two operands, returns the common divisor g and the Bézout coefficients respectively. Read more
source§

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

§

type OutputGcd = UBig

§

type OutputCoeff = IBig

source§

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

Calculate the greatest common divisor between the two operands, returns the common divisor g and the Bézout coefficients respectively. Read more
source§

impl ExtendedGcd<UBig> for IBig

§

type OutputGcd = UBig

§

type OutputCoeff = IBig

source§

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

Calculate the greatest common divisor between the two operands, returns the common divisor g and the Bézout coefficients respectively. Read more
source§

impl ExtendedGcd for IBig

§

type OutputGcd = UBig

§

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, const B: u64> From<IBig> for FBig<R, B>
where R: Round,

source§

fn from(n: IBig) -> FBig<R, B>

Converts to this type from the input type.
source§

impl From<IBig> for RBig

source§

fn from(v: IBig) -> RBig

Converts to this type from the input type.
source§

impl From<IBig> for Relaxed

source§

fn from(v: IBig) -> Relaxed

Converts to this type from the input type.
source§

impl<const B: u64> From<IBig> for Repr<B>

source§

fn from(n: IBig) -> Repr<B>

Converts to this type from the input type.
source§

impl From<UBig> for IBig

source§

fn from(x: UBig) -> IBig

Converts to this type from the input type.
source§

impl From<bool> for IBig

source§

fn from(b: bool) -> IBig

Converts to this type from the input type.
source§

impl From<i128> for IBig

source§

fn from(value: i128) -> IBig

Converts to this type from the input type.
source§

impl From<i16> for IBig

source§

fn from(value: i16) -> IBig

Converts to this type from the input type.
source§

impl From<i32> for IBig

source§

fn from(value: i32) -> IBig

Converts to this type from the input type.
source§

impl From<i64> for IBig

source§

fn from(value: i64) -> IBig

Converts to this type from the input type.
source§

impl From<i8> for IBig

source§

fn from(value: i8) -> IBig

Converts to this type from the input type.
source§

impl From<isize> for IBig

source§

fn from(value: isize) -> IBig

Converts to this type from the input type.
source§

impl From<u128> for IBig

source§

fn from(value: u128) -> IBig

Converts to this type from the input type.
source§

impl From<u16> for IBig

source§

fn from(value: u16) -> IBig

Converts to this type from the input type.
source§

impl From<u32> for IBig

source§

fn from(value: u32) -> IBig

Converts to this type from the input type.
source§

impl From<u64> for IBig

source§

fn from(value: u64) -> IBig

Converts to this type from the input type.
source§

impl From<u8> for IBig

source§

fn from(value: u8) -> IBig

Converts to this type from the input type.
source§

impl From<usize> for IBig

source§

fn from(value: usize) -> IBig

Converts to this type from the input type.
source§

impl FromStr for IBig

§

type Err = ParseError

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

fn from_str(s: &str) -> Result<IBig, ParseError>

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

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

§

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

§

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

§

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

§

type Output = UBig

source§

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

Compute the greatest common divisor between the two operands. Read more
source§

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

§

type Output = UBig

source§

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

Compute the greatest common divisor between the two operands. Read more
source§

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

§

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

§

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

§

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

§

type Output = UBig

source§

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

Compute the greatest common divisor between the two operands. Read more
source§

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

§

type Output = UBig

source§

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

Compute the greatest common divisor between the two operands. Read more
source§

impl Gcd<UBig> for IBig

§

type Output = UBig

source§

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

Compute the greatest common divisor between the two operands. Read more
source§

impl Gcd for IBig

§

type Output = UBig

source§

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

Compute the greatest common divisor between the two operands. Read more
source§

impl Hash for IBig

source§

fn hash<__H>(&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

§

type RingElement = Reduced<'a>

source§

fn into_ring(self, ring: &ConstDivisor) -> Reduced<'_>

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<'l, 'r, R, const B: u64> Mul<&'r FBig<R, B>> for &'l IBig
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> <&'l IBig as Mul<&'r FBig<R, B>>>::Output

Performs the * operation. Read more
source§

impl<'r, R, const B: u64> Mul<&'r FBig<R, B>> for IBig
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> <IBig as Mul<&'r FBig<R, B>>>::Output

Performs the * operation. Read more
source§

impl<'l, 'r, R, const B: u64> Mul<&'r IBig> for &'l FBig<R, B>
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &IBig) -> <&'l FBig<R, B> as Mul<&'r IBig>>::Output

Performs the * operation. Read more
source§

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

§

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 RBig

§

type Output = RBig

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &IBig) -> RBig

Performs the * operation. Read more
source§

impl<'l, 'r> Mul<&'r IBig> for &'l Relaxed

§

type Output = Relaxed

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &IBig) -> Relaxed

Performs the * operation. Read more
source§

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

§

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, R, const B: u64> Mul<&'r IBig> for FBig<R, B>
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &IBig) -> <FBig<R, B> as Mul<&'r IBig>>::Output

Performs the * operation. Read more
source§

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

§

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 RBig

§

type Output = RBig

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &IBig) -> RBig

Performs the * operation. Read more
source§

impl<'r> Mul<&'r IBig> for Relaxed

§

type Output = Relaxed

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &IBig) -> Relaxed

Performs the * operation. Read more
source§

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

§

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 RBig> for &'l IBig

§

type Output = RBig

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &RBig) -> RBig

Performs the * operation. Read more
source§

impl<'r> Mul<&'r RBig> for IBig

§

type Output = RBig

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &RBig) -> RBig

Performs the * operation. Read more
source§

impl<'l, 'r> Mul<&'r Relaxed> for &'l IBig

§

type Output = Relaxed

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &Relaxed) -> Relaxed

Performs the * operation. Read more
source§

impl<'r> Mul<&'r Relaxed> for IBig

§

type Output = Relaxed

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &Relaxed) -> Relaxed

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

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, const B: u64> Mul<FBig<R, B>> for &'l IBig
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> <&'l IBig as Mul<FBig<R, B>>>::Output

Performs the * operation. Read more
source§

impl<R, const B: u64> Mul<FBig<R, B>> for IBig
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> <IBig as Mul<FBig<R, B>>>::Output

Performs the * operation. Read more
source§

impl<'l, R, const B: u64> Mul<IBig> for &'l FBig<R, B>
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: IBig) -> <&'l FBig<R, B> as Mul<IBig>>::Output

Performs the * operation. Read more
source§

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

§

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 RBig

§

type Output = RBig

The resulting type after applying the * operator.
source§

fn mul(self, rhs: IBig) -> RBig

Performs the * operation. Read more
source§

impl<'l> Mul<IBig> for &'l Relaxed

§

type Output = Relaxed

The resulting type after applying the * operator.
source§

fn mul(self, rhs: IBig) -> Relaxed

Performs the * operation. Read more
source§

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

§

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, const B: u64> Mul<IBig> for FBig<R, B>
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: IBig) -> <FBig<R, B> as Mul<IBig>>::Output

Performs the * operation. Read more
source§

impl Mul<IBig> for RBig

§

type Output = RBig

The resulting type after applying the * operator.
source§

fn mul(self, rhs: IBig) -> RBig

Performs the * operation. Read more
source§

impl Mul<IBig> for Relaxed

§

type Output = Relaxed

The resulting type after applying the * operator.
source§

fn mul(self, rhs: IBig) -> Relaxed

Performs the * operation. Read more
source§

impl Mul<IBig> for Sign

§

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

§

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<RBig> for &'l IBig

§

type Output = RBig

The resulting type after applying the * operator.
source§

fn mul(self, rhs: RBig) -> RBig

Performs the * operation. Read more
source§

impl Mul<RBig> for IBig

§

type Output = RBig

The resulting type after applying the * operator.
source§

fn mul(self, rhs: RBig) -> RBig

Performs the * operation. Read more
source§

impl<'l> Mul<Relaxed> for &'l IBig

§

type Output = Relaxed

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Relaxed) -> Relaxed

Performs the * operation. Read more
source§

impl Mul<Relaxed> for IBig

§

type Output = Relaxed

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Relaxed) -> Relaxed

Performs the * operation. Read more
source§

impl Mul<Sign> for IBig

§

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<'l> Mul<UBig> for &'l IBig

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<UBig> for IBig

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<i128> for IBig

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<i16> for IBig

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<i32> for IBig

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<i64> for IBig

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<i8> for IBig

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<isize> for IBig

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<u128> for IBig

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<u16> for IBig

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<u32> for IBig

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<u64> for IBig

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<u8> for IBig

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<usize> for IBig

§

type Output = IBig

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul for IBig

§

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, const B: u64> MulAssign<&IBig> for FBig<R, B>
where R: Round,

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

source§

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

Performs the *= operation. Read more
source§

impl MulAssign<&i16> for IBig

source§

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

Performs the *= operation. Read more
source§

impl MulAssign<&i32> for IBig

source§

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

Performs the *= operation. Read more
source§

impl MulAssign<&i64> for IBig

source§

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

Performs the *= operation. Read more
source§

impl MulAssign<&i8> for IBig

source§

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

Performs the *= operation. Read more
source§

impl MulAssign<&isize> for IBig

source§

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

Performs the *= operation. Read more
source§

impl MulAssign<&u128> for IBig

source§

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

Performs the *= operation. Read more
source§

impl MulAssign<&u16> for IBig

source§

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

Performs the *= operation. Read more
source§

impl MulAssign<&u32> for IBig

source§

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

Performs the *= operation. Read more
source§

impl MulAssign<&u64> for IBig

source§

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

Performs the *= operation. Read more
source§

impl MulAssign<&u8> for IBig

source§

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

Performs the *= operation. Read more
source§

impl MulAssign<&usize> for IBig

source§

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

Performs the *= operation. Read more
source§

impl<R, const B: u64> MulAssign<IBig> for FBig<R, B>
where R: Round,

source§

fn mul_assign(&mut self, rhs: IBig)

Performs the *= operation. Read more
source§

impl MulAssign<Sign> for IBig

source§

fn mul_assign(&mut self, rhs: Sign)

Performs the *= operation. Read more
source§

impl MulAssign<UBig> for IBig

source§

fn mul_assign(&mut self, rhs: UBig)

Performs the *= operation. Read more
source§

impl MulAssign<i128> for IBig

source§

fn mul_assign(&mut self, rhs: i128)

Performs the *= operation. Read more
source§

impl MulAssign<i16> for IBig

source§

fn mul_assign(&mut self, rhs: i16)

Performs the *= operation. Read more
source§

impl MulAssign<i32> for IBig

source§

fn mul_assign(&mut self, rhs: i32)

Performs the *= operation. Read more
source§

impl MulAssign<i64> for IBig

source§

fn mul_assign(&mut self, rhs: i64)

Performs the *= operation. Read more
source§

impl MulAssign<i8> for IBig

source§

fn mul_assign(&mut self, rhs: i8)

Performs the *= operation. Read more
source§

impl MulAssign<isize> for IBig

source§

fn mul_assign(&mut self, rhs: isize)

Performs the *= operation. Read more
source§

impl MulAssign<u128> for IBig

source§

fn mul_assign(&mut self, rhs: u128)

Performs the *= operation. Read more
source§

impl MulAssign<u16> for IBig

source§

fn mul_assign(&mut self, rhs: u16)

Performs the *= operation. Read more
source§

impl MulAssign<u32> for IBig

source§

fn mul_assign(&mut self, rhs: u32)

Performs the *= operation. Read more
source§

impl MulAssign<u64> for IBig

source§

fn mul_assign(&mut self, rhs: u64)

Performs the *= operation. Read more
source§

impl MulAssign<u8> for IBig

source§

fn mul_assign(&mut self, rhs: u8)

Performs the *= operation. Read more
source§

impl MulAssign<usize> for IBig

source§

fn mul_assign(&mut self, rhs: usize)

Performs the *= operation. Read more
source§

impl MulAssign for IBig

source§

fn mul_assign(&mut self, rhs: IBig)

Performs the *= operation. Read more
source§

impl Neg for &IBig

§

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

§

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

§

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

§

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<R, const B: u64> NumOrd<FBig<R, B>> for IBig
where R: Round,

source§

fn num_cmp(&self, other: &FBig<R, B>) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
source§

fn num_partial_cmp(&self, other: &FBig<R, B>) -> 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<R, const B: u64> NumOrd<IBig> for FBig<R, B>
where R: Round,

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

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 Relaxed

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<const B: u64> NumOrd<IBig> for Repr<B>

source§

fn num_cmp(&self, other: &IBig) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
source§

fn num_partial_cmp(&self, other: &IBig) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
source§

impl NumOrd<IBig> for UBig

source§

fn num_cmp(&self, other: &IBig) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
source§

fn num_partial_cmp(&self, other: &IBig) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
source§

impl NumOrd<RBig> for IBig

source§

fn num_cmp(&self, other: &RBig) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
source§

fn num_partial_cmp(&self, other: &RBig) -> 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<Relaxed> for IBig

source§

fn num_cmp(&self, other: &Relaxed) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
source§

fn num_partial_cmp(&self, other: &Relaxed) -> 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<const B: u64> NumOrd<Repr<B>> for IBig

source§

fn num_cmp(&self, other: &Repr<B>) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
source§

fn num_partial_cmp(&self, other: &Repr<B>) -> 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<i128> for IBig

source§

fn num_partial_cmp(&self, other: &i128) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
source§

impl NumOrd<i16> for IBig

source§

fn num_partial_cmp(&self, other: &i16) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
source§

impl NumOrd<i32> for IBig

source§

fn num_partial_cmp(&self, other: &i32) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
source§

impl NumOrd<i64> for IBig

source§

fn num_partial_cmp(&self, other: &i64) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
source§

impl NumOrd<i8> for IBig

source§

fn num_partial_cmp(&self, other: &i8) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
source§

impl NumOrd<isize> for IBig

source§

fn num_partial_cmp(&self, other: &isize) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
source§

impl NumOrd<u128> for IBig

source§

fn num_partial_cmp(&self, other: &u128) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
source§

impl NumOrd<u16> for IBig

source§

fn num_partial_cmp(&self, other: &u16) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
source§

impl NumOrd<u32> for IBig

source§

fn num_partial_cmp(&self, other: &u32) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
source§

impl NumOrd<u64> for IBig

source§

fn num_partial_cmp(&self, other: &u64) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
source§

impl NumOrd<u8> for IBig

source§

fn num_partial_cmp(&self, other: &u8) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
source§

impl NumOrd<usize> for IBig

source§

fn num_partial_cmp(&self, other: &usize) -> Option<Ordering>

PartialOrd::partial_cmp on different numeric types
source§

fn num_eq(&self, other: &Other) -> bool

PartialEq::eq on different numeric types
source§

fn num_ne(&self, other: &Other) -> bool

PartialEq::ne on different numeric types
source§

fn num_lt(&self, other: &Other) -> bool

PartialOrd::lt on different numeric types
source§

fn num_le(&self, other: &Other) -> bool

PartialOrd::le on different numeric types
source§

fn num_gt(&self, other: &Other) -> bool

PartialOrd::gt on different numeric types
source§

fn num_ge(&self, other: &Other) -> bool

PartialOrd::ge on different numeric types
source§

fn num_cmp(&self, other: &Other) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
source§

impl Octal for IBig

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), 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 · source§

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

Compares and returns the maximum of two values. Read more
1.21.0 · source§

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

Compares and returns the minimum of two values. Read more
1.50.0 · source§

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

Restrict a value to a certain interval. Read more
source§

impl PartialEq for IBig

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for IBig

source§

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

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

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

Method which takes an iterator and generates Self from the elements by multiplying the items.
source§

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

§

type Output = IBig

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

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

§

type Output = UBig

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

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

§

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

§

type Output = UBig

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

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

§

type Output = IBig

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

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

§

type Output = i128

The resulting type after applying the % operator.
source§

fn rem(self, rhs: &i128) -> i128

Performs the % operation. Read more
source§

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

§

type Output = i128

The resulting type after applying the % operator.
source§

fn rem(self, rhs: &i128) -> i128

Performs the % operation. Read more
source§

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

§

type Output = i16

The resulting type after applying the % operator.
source§

fn rem(self, rhs: &i16) -> i16

Performs the % operation. Read more
source§

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

§

type Output = i16

The resulting type after applying the % operator.
source§

fn rem(self, rhs: &i16) -> i16

Performs the % operation. Read more
source§

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

§

type Output = i32

The resulting type after applying the % operator.
source§

fn rem(self, rhs: &i32) -> i32

Performs the % operation. Read more
source§

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

§

type Output = i32

The resulting type after applying the % operator.
source§

fn rem(self, rhs: &i32) -> i32

Performs the % operation. Read more
source§

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

§

type Output = i64

The resulting type after applying the % operator.
source§

fn rem(self, rhs: &i64) -> i64

Performs the % operation. Read more
source§

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

§

type Output = i64

The resulting type after applying the % operator.
source§

fn rem(self, rhs: &i64) -> i64

Performs the % operation. Read more
source§

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

§

type Output = i8

The resulting type after applying the % operator.
source§

fn rem(self, rhs: &i8) -> i8

Performs the % operation. Read more
source§

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

§

type Output = i8

The resulting type after applying the % operator.
source§

fn rem(self, rhs: &i8) -> i8

Performs the % operation. Read more
source§

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

§

type Output = isize

The resulting type after applying the % operator.
source§

fn rem(self, rhs: &isize) -> isize

Performs the % operation. Read more
source§

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

§

type Output = isize

The resulting type after applying the % operator.
source§

fn rem(self, rhs: &isize) -> isize

Performs the % operation. Read more
source§

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

§

type Output = u128

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

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

§

type Output = u128

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

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

§

type Output = u16

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

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

§

type Output = u16

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

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

§

type Output = u32

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

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

§

type Output = u32

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

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

§

type Output = u64

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

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

§

type Output = u64

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

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

§

type Output = u8

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

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

§

type Output = u8

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

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

§

type Output = usize

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

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

§

type Output = usize

The resulting type after applying the % operator.
source§

fn rem(self, rhs: &usize) -> usize

Performs the % operation. Read more
source§

impl<'l> Rem<IBig> for &'l IBig

§

type Output = IBig

The resulting type after applying the % operator.
source§

fn rem(self, rhs: IBig) -> IBig

Performs the % operation. Read more
source§

impl<'l> Rem<IBig> for &'l UBig

§

type Output = UBig

The resulting type after applying the % operator.
source§

fn rem(self, rhs: IBig) -> UBig

Performs the % operation. Read more
source§

impl Rem<IBig> for UBig

§

type Output = UBig

The resulting type after applying the % operator.
source§

fn rem(self, rhs: IBig) -> UBig

Performs the % operation. Read more
source§

impl<'l> Rem<UBig> for &'l IBig

§

type Output = IBig

The resulting type after applying the % operator.
source§

fn rem(self, rhs: UBig) -> IBig

Performs the % operation. Read more
source§

impl Rem<UBig> for IBig

§

type Output = IBig

The resulting type after applying the % operator.
source§

fn rem(self, rhs: UBig) -> IBig

Performs the % operation. Read more
source§

impl<'l> Rem<i128> for &'l IBig

§

type Output = i128

The resulting type after applying the % operator.
source§

fn rem(self, rhs: i128) -> i128

Performs the % operation. Read more
source§

impl Rem<i128> for IBig

§

type Output = i128

The resulting type after applying the % operator.
source§

fn rem(self, rhs: i128) -> i128

Performs the % operation. Read more
source§

impl<'l> Rem<i16> for &'l IBig

§

type Output = i16

The resulting type after applying the % operator.
source§

fn rem(self, rhs: i16) -> i16

Performs the % operation. Read more
source§

impl Rem<i16> for IBig

§

type Output = i16

The resulting type after applying the % operator.
source§

fn rem(self, rhs: i16) -> i16

Performs the % operation. Read more
source§

impl<'l> Rem<i32> for &'l IBig

§

type Output = i32

The resulting type after applying the % operator.
source§

fn rem(self, rhs: i32) -> i32

Performs the % operation. Read more
source§

impl Rem<i32> for IBig

§

type Output = i32

The resulting type after applying the % operator.
source§

fn rem(self, rhs: i32) -> i32

Performs the % operation. Read more
source§

impl<'l> Rem<i64> for &'l IBig

§

type Output = i64

The resulting type after applying the % operator.
source§

fn rem(self, rhs: i64) -> i64

Performs the % operation. Read more
source§

impl Rem<i64> for IBig

§

type Output = i64

The resulting type after applying the % operator.
source§

fn rem(self, rhs: i64) -> i64

Performs the % operation. Read more
source§

impl<'l> Rem<i8> for &'l IBig

§

type Output = i8

The resulting type after applying the % operator.
source§

fn rem(self, rhs: i8) -> i8

Performs the % operation. Read more
source§

impl Rem<i8> for IBig

§

type Output = i8

The resulting type after applying the % operator.
source§

fn rem(self, rhs: i8) -> i8

Performs the % operation. Read more
source§

impl<'l> Rem<isize> for &'l IBig

§

type Output = isize

The resulting type after applying the % operator.
source§

fn rem(self, rhs: isize) -> isize

Performs the % operation. Read more
source§

impl Rem<isize> for IBig

§

type Output = isize

The resulting type after applying the % operator.
source§

fn rem(self, rhs: isize) -> isize

Performs the % operation. Read more
source§

impl<'l> Rem<u128> for &'l IBig

§

type Output = u128

The resulting type after applying the % operator.
source§

fn rem(self, rhs: u128) -> u128

Performs the % operation. Read more
source§

impl Rem<u128> for IBig

§

type Output = u128

The resulting type after applying the % operator.
source§

fn rem(self, rhs: u128) -> u128

Performs the % operation. Read more
source§

impl<'l> Rem<u16> for &'l IBig

§

type Output = u16

The resulting type after applying the % operator.
source§

fn rem(self, rhs: u16) -> u16

Performs the % operation. Read more
source§

impl Rem<u16> for IBig

§

type Output = u16

The resulting type after applying the % operator.
source§

fn rem(self, rhs: u16) -> u16

Performs the % operation. Read more
source§

impl<'l> Rem<u32> for &'l IBig

§

type Output = u32

The resulting type after applying the % operator.
source§

fn rem(self, rhs: u32) -> u32

Performs the % operation. Read more
source§

impl Rem<u32> for IBig

§

type Output = u32

The resulting type after applying the % operator.
source§

fn rem(self, rhs: u32) -> u32

Performs the % operation. Read more
source§

impl<'l> Rem<u64> for &'l IBig

§

type Output = u64

The resulting type after applying the % operator.
source§

fn rem(self, rhs: u64) -> u64

Performs the % operation. Read more
source§

impl Rem<u64> for IBig

§

type Output = u64

The resulting type after applying the % operator.
source§

fn rem(self, rhs: u64) -> u64

Performs the % operation. Read more
source§

impl<'l> Rem<u8> for &'l IBig

§

type Output = u8

The resulting type after applying the % operator.
source§

fn rem(self, rhs: u8) -> u8

Performs the % operation. Read more
source§

impl Rem<u8> for IBig

§

type Output = u8

The resulting type after applying the % operator.
source§

fn rem(self, rhs: u8) -> u8

Performs the % operation. Read more
source§

impl<'l> Rem<usize> for &'l IBig

§

type Output = usize

The resulting type after applying the % operator.
source§

fn rem(self, rhs: usize) -> usize

Performs the % operation. Read more
source§

impl Rem<usize> for IBig

§

type Output = usize

The resulting type after applying the % operator.
source§

fn rem(self, rhs: usize) -> usize

Performs the % operation. Read more
source§

impl Rem for IBig

§

type Output = IBig

The resulting type after applying the % operator.
source§

fn rem(self, rhs: IBig) -> IBig

Performs the % operation. Read more
source§

impl<'r> RemAssign<&'r ConstDivisor> for IBig

source§

fn rem_assign(&mut self, rhs: &'r ConstDivisor)

Performs the %= operation. Read more
source§

impl RemAssign<&IBig> for IBig

source§

fn rem_assign(&mut self, rhs: &IBig)

Performs the %= operation. Read more
source§

impl RemAssign<&IBig> for UBig

source§

fn rem_assign(&mut self, rhs: &IBig)

Performs the %= operation. Read more
source§

impl RemAssign<&UBig> for IBig

source§

fn rem_assign(&mut self, rhs: &UBig)

Performs the %= operation. Read more
source§

impl RemAssign<IBig> for UBig

source§

fn rem_assign(&mut self, rhs: IBig)

Performs the %= operation. Read more
source§

impl RemAssign<UBig> for IBig

source§

fn rem_assign(&mut self, rhs: UBig)

Performs the %= operation. Read more
source§

impl RemAssign for IBig

source§

fn rem_assign(&mut self, rhs: IBig)

Performs the %= operation. Read more
source§

impl<'l, 'r> RemEuclid<&'r IBig> for &'l IBig

§

type Output = UBig

source§

fn rem_euclid(self, rhs: &IBig) -> UBig

source§

impl<'r> RemEuclid<&'r IBig> for IBig

§

type Output = UBig

source§

fn rem_euclid(self, rhs: &IBig) -> UBig

source§

impl<'l> RemEuclid<IBig> for &'l IBig

§

type Output = UBig

source§

fn rem_euclid(self, rhs: IBig) -> UBig

source§

impl RemEuclid for IBig

§

type Output = UBig

source§

fn rem_euclid(self, rhs: IBig) -> UBig

source§

impl Shl<&usize> for &IBig

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

type Output = UBig

source§

fn sqrt(&self) -> UBig

source§

impl<'l, 'r, R, const B: u64> Sub<&'r FBig<R, B>> for &'l IBig
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> <&'l IBig as Sub<&'r FBig<R, B>>>::Output

Performs the - operation. Read more
source§

impl<'r, R, const B: u64> Sub<&'r FBig<R, B>> for IBig
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> <IBig as Sub<&'r FBig<R, B>>>::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R, const B: u64> Sub<&'r IBig> for &'l FBig<R, B>
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &IBig) -> <&'l FBig<R, B> as Sub<&'r IBig>>::Output

Performs the - operation. Read more
source§

impl<'l, 'r> Sub<&'r IBig> for &'l IBig

§

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 RBig

§

type Output = RBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &IBig) -> RBig

Performs the - operation. Read more
source§

impl<'l, 'r> Sub<&'r IBig> for &'l Relaxed

§

type Output = Relaxed

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &IBig) -> Relaxed

Performs the - operation. Read more
source§

impl<'l, 'r> Sub<&'r IBig> for &'l UBig

§

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, R, const B: u64> Sub<&'r IBig> for FBig<R, B>
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &IBig) -> <FBig<R, B> as Sub<&'r IBig>>::Output

Performs the - operation. Read more
source§

impl<'r> Sub<&'r IBig> for IBig

§

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 RBig

§

type Output = RBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &IBig) -> RBig

Performs the - operation. Read more
source§

impl<'r> Sub<&'r IBig> for Relaxed

§

type Output = Relaxed

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &IBig) -> Relaxed

Performs the - operation. Read more
source§

impl<'r> Sub<&'r IBig> for UBig

§

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 RBig> for &'l IBig

§

type Output = RBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &RBig) -> RBig

Performs the - operation. Read more
source§

impl<'r> Sub<&'r RBig> for IBig

§

type Output = RBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &RBig) -> RBig

Performs the - operation. Read more
source§

impl<'l, 'r> Sub<&'r Relaxed> for &'l IBig

§

type Output = Relaxed

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &Relaxed) -> Relaxed

Performs the - operation. Read more
source§

impl<'r> Sub<&'r Relaxed> for IBig

§

type Output = Relaxed

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &Relaxed) -> Relaxed

Performs the - operation. Read more
source§

impl<'l, 'r> Sub<&'r UBig> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &UBig) -> IBig

Performs the - operation. Read more
source§

impl<'r> Sub<&'r UBig> for IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &UBig) -> IBig

Performs the - operation. Read more
source§

impl<'l, 'r> Sub<&'r i128> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &i128) -> IBig

Performs the - operation. Read more
source§

impl<'r> Sub<&'r i128> for IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &i128) -> IBig

Performs the - operation. Read more
source§

impl<'l, 'r> Sub<&'r i16> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &i16) -> IBig

Performs the - operation. Read more
source§

impl<'r> Sub<&'r i16> for IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &i16) -> IBig

Performs the - operation. Read more
source§

impl<'l, 'r> Sub<&'r i32> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &i32) -> IBig

Performs the - operation. Read more
source§

impl<'r> Sub<&'r i32> for IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &i32) -> IBig

Performs the - operation. Read more
source§

impl<'l, 'r> Sub<&'r i64> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &i64) -> IBig

Performs the - operation. Read more
source§

impl<'r> Sub<&'r i64> for IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &i64) -> IBig

Performs the - operation. Read more
source§

impl<'l, 'r> Sub<&'r i8> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &i8) -> IBig

Performs the - operation. Read more
source§

impl<'r> Sub<&'r i8> for IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &i8) -> IBig

Performs the - operation. Read more
source§

impl<'l, 'r> Sub<&'r isize> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &isize) -> IBig

Performs the - operation. Read more
source§

impl<'r> Sub<&'r isize> for IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &isize) -> IBig

Performs the - operation. Read more
source§

impl<'l, 'r> Sub<&'r u128> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &u128) -> IBig

Performs the - operation. Read more
source§

impl<'r> Sub<&'r u128> for IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &u128) -> IBig

Performs the - operation. Read more
source§

impl<'l, 'r> Sub<&'r u16> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &u16) -> IBig

Performs the - operation. Read more
source§

impl<'r> Sub<&'r u16> for IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &u16) -> IBig

Performs the - operation. Read more
source§

impl<'l, 'r> Sub<&'r u32> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &u32) -> IBig

Performs the - operation. Read more
source§

impl<'r> Sub<&'r u32> for IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &u32) -> IBig

Performs the - operation. Read more
source§

impl<'l, 'r> Sub<&'r u64> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &u64) -> IBig

Performs the - operation. Read more
source§

impl<'r> Sub<&'r u64> for IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &u64) -> IBig

Performs the - operation. Read more
source§

impl<'l, 'r> Sub<&'r u8> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &u8) -> IBig

Performs the - operation. Read more
source§

impl<'r> Sub<&'r u8> for IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &u8) -> IBig

Performs the - operation. Read more
source§

impl<'l, 'r> Sub<&'r usize> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &usize) -> IBig

Performs the - operation. Read more
source§

impl<'r> Sub<&'r usize> for IBig

§

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, const B: u64> Sub<FBig<R, B>> for &'l IBig
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> <&'l IBig as Sub<FBig<R, B>>>::Output

Performs the - operation. Read more
source§

impl<R, const B: u64> Sub<FBig<R, B>> for IBig
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> <IBig as Sub<FBig<R, B>>>::Output

Performs the - operation. Read more
source§

impl<'l, R, const B: u64> Sub<IBig> for &'l FBig<R, B>
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: IBig) -> <&'l FBig<R, B> as Sub<IBig>>::Output

Performs the - operation. Read more
source§

impl<'l> Sub<IBig> for &'l IBig

§

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 RBig

§

type Output = RBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: IBig) -> RBig

Performs the - operation. Read more
source§

impl<'l> Sub<IBig> for &'l Relaxed

§

type Output = Relaxed

The resulting type after applying the - operator.
source§

fn sub(self, rhs: IBig) -> Relaxed

Performs the - operation. Read more
source§

impl<'l> Sub<IBig> for &'l UBig

§

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, const B: u64> Sub<IBig> for FBig<R, B>
where R: Round,

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: IBig) -> <FBig<R, B> as Sub<IBig>>::Output

Performs the - operation. Read more
source§

impl Sub<IBig> for RBig

§

type Output = RBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: IBig) -> RBig

Performs the - operation. Read more
source§

impl Sub<IBig> for Relaxed

§

type Output = Relaxed

The resulting type after applying the - operator.
source§

fn sub(self, rhs: IBig) -> Relaxed

Performs the - operation. Read more
source§

impl Sub<IBig> for UBig

§

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<RBig> for &'l IBig

§

type Output = RBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: RBig) -> RBig

Performs the - operation. Read more
source§

impl Sub<RBig> for IBig

§

type Output = RBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: RBig) -> RBig

Performs the - operation. Read more
source§

impl<'l> Sub<Relaxed> for &'l IBig

§

type Output = Relaxed

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Relaxed) -> Relaxed

Performs the - operation. Read more
source§

impl Sub<Relaxed> for IBig

§

type Output = Relaxed

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Relaxed) -> Relaxed

Performs the - operation. Read more
source§

impl<'l> Sub<UBig> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: UBig) -> IBig

Performs the - operation. Read more
source§

impl Sub<UBig> for IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: UBig) -> IBig

Performs the - operation. Read more
source§

impl<'l> Sub<i128> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: i128) -> IBig

Performs the - operation. Read more
source§

impl Sub<i128> for IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: i128) -> IBig

Performs the - operation. Read more
source§

impl<'l> Sub<i16> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: i16) -> IBig

Performs the - operation. Read more
source§

impl Sub<i16> for IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: i16) -> IBig

Performs the - operation. Read more
source§

impl<'l> Sub<i32> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: i32) -> IBig

Performs the - operation. Read more
source§

impl Sub<i32> for IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: i32) -> IBig

Performs the - operation. Read more
source§

impl<'l> Sub<i64> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: i64) -> IBig

Performs the - operation. Read more
source§

impl Sub<i64> for IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: i64) -> IBig

Performs the - operation. Read more
source§

impl<'l> Sub<i8> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: i8) -> IBig

Performs the - operation. Read more
source§

impl Sub<i8> for IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: i8) -> IBig

Performs the - operation. Read more
source§

impl<'l> Sub<isize> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: isize) -> IBig

Performs the - operation. Read more
source§

impl Sub<isize> for IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: isize) -> IBig

Performs the - operation. Read more
source§

impl<'l> Sub<u128> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u128) -> IBig

Performs the - operation. Read more
source§

impl Sub<u128> for IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u128) -> IBig

Performs the - operation. Read more
source§

impl<'l> Sub<u16> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u16) -> IBig

Performs the - operation. Read more
source§

impl Sub<u16> for IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u16) -> IBig

Performs the - operation. Read more
source§

impl<'l> Sub<u32> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u32) -> IBig

Performs the - operation. Read more
source§

impl Sub<u32> for IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u32) -> IBig

Performs the - operation. Read more
source§

impl<'l> Sub<u64> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u64) -> IBig

Performs the - operation. Read more
source§

impl Sub<u64> for IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u64) -> IBig

Performs the - operation. Read more
source§

impl<'l> Sub<u8> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u8) -> IBig

Performs the - operation. Read more
source§

impl Sub<u8> for IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u8) -> IBig

Performs the - operation. Read more
source§

impl<'l> Sub<usize> for &'l IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: usize) -> IBig

Performs the - operation. Read more
source§

impl Sub<usize> for IBig

§

type Output = IBig

The resulting type after applying the - operator.
source§

fn sub(self, rhs: usize) -> IBig

Performs the - operation. Read more
source§

impl Sub for IBig

§

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, const B: u64> SubAssign<&IBig> for FBig<R, B>
where R: Round,

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<&i128> for IBig

source§

fn sub_assign(&mut self, rhs: &i128)

Performs the -= operation. Read more
source§

impl SubAssign<&i16> for IBig

source§

fn sub_assign(&mut self, rhs: &i16)

Performs the -= operation. Read more
source§

impl SubAssign<&i32> for IBig

source§

fn sub_assign(&mut self, rhs: &i32)

Performs the -= operation. Read more
source§

impl SubAssign<&i64> for IBig

source§

fn sub_assign(&mut self, rhs: &i64)

Performs the -= operation. Read more
source§

impl SubAssign<&i8> for IBig

source§

fn sub_assign(&mut self, rhs: &i8)

Performs the -= operation. Read more
source§

impl SubAssign<&isize> for IBig

source§

fn sub_assign(&mut self, rhs: &isize)

Performs the -= operation. Read more
source§

impl SubAssign<&u128> for IBig

source§

fn sub_assign(&mut self, rhs: &u128)

Performs the -= operation. Read more
source§

impl SubAssign<&u16> for IBig

source§

fn sub_assign(&mut self, rhs: &u16)

Performs the -= operation. Read more
source§

impl SubAssign<&u32> for IBig

source§

fn sub_assign(&mut self, rhs: &u32)

Performs the -= operation. Read more
source§

impl SubAssign<&u64> for IBig

source§

fn sub_assign(&mut self, rhs: &u64)

Performs the -= operation. Read more
source§

impl SubAssign<&u8> for IBig

source§

fn sub_assign(&mut self, rhs: &u8)

Performs the -= operation. Read more
source§

impl SubAssign<&usize> for IBig

source§

fn sub_assign(&mut self, rhs: &usize)

Performs the -= operation. Read more
source§

impl<R, const B: u64> SubAssign<IBig> for FBig<R, B>
where R: Round,

source§

fn sub_assign(&mut self, rhs: IBig)

Performs the -= operation. Read more
source§

impl SubAssign<UBig> for IBig

source§

fn sub_assign(&mut self, rhs: UBig)

Performs the -= operation. Read more
source§

impl SubAssign<i128> for IBig

source§

fn sub_assign(&mut self, rhs: i128)

Performs the -= operation. Read more
source§

impl SubAssign<i16> for IBig

source§

fn sub_assign(&mut self, rhs: i16)

Performs the -= operation. Read more
source§

impl SubAssign<i32> for IBig

source§

fn sub_assign(&mut self, rhs: i32)

Performs the -= operation. Read more
source§

impl SubAssign<i64> for IBig

source§

fn sub_assign(&mut self, rhs: i64)

Performs the -= operation. Read more
source§

impl SubAssign<i8> for IBig

source§

fn sub_assign(&mut self, rhs: i8)

Performs the -= operation. Read more
source§

impl SubAssign<isize> for IBig

source§

fn sub_assign(&mut self, rhs: isize)

Performs the -= operation. Read more
source§

impl SubAssign<u128> for IBig

source§

fn sub_assign(&mut self, rhs: u128)

Performs the -= operation. Read more
source§

impl SubAssign<u16> for IBig

source§

fn sub_assign(&mut self, rhs: u16)

Performs the -= operation. Read more
source§

impl SubAssign<u32> for IBig

source§

fn sub_assign(&mut self, rhs: u32)

Performs the -= operation. Read more
source§

impl SubAssign<u64> for IBig

source§

fn sub_assign(&mut self, rhs: u64)

Performs the -= operation. Read more
source§

impl SubAssign<u8> for IBig

source§

fn sub_assign(&mut self, rhs: u8)

Performs the -= operation. Read more
source§

impl SubAssign<usize> for IBig

source§

fn sub_assign(&mut self, rhs: usize)

Performs the -= operation. Read more
source§

impl SubAssign for IBig

source§

fn sub_assign(&mut self, rhs: IBig)

Performs the -= operation. Read more
source§

impl<T> Sum<T> for IBig
where IBig: Add<T, Output = IBig>,

source§

fn sum<I>(iter: I) -> IBig
where I: Iterator<Item = T>,

Method which takes an iterator and generates Self from the elements by “summing up” the items.
source§

impl<R, const B: u64> TryFrom<FBig<R, B>> for IBig
where R: Round,

§

type Error = ConversionError

The type returned in the event of a conversion error.
source§

fn try_from( value: FBig<R, B>, ) -> Result<IBig, <IBig as TryFrom<FBig<R, B>>>::Error>

Performs the conversion.
source§

impl TryFrom<IBig> for UBig

§

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<RBig> for IBig

§

type Error = ConversionError

The type returned in the event of a conversion error.
source§

fn try_from(value: RBig) -> Result<IBig, <IBig as TryFrom<RBig>>::Error>

Performs the conversion.
source§

impl TryFrom<Relaxed> for IBig

§

type Error = ConversionError

The type returned in the event of a conversion error.
source§

fn try_from(value: Relaxed) -> Result<IBig, <IBig as TryFrom<Relaxed>>::Error>

Performs the conversion.
source§

impl TryFrom<Repr> for IBig

§

type Error = ConversionError

The type returned in the event of a conversion error.
source§

fn try_from(value: Repr) -> Result<IBig, <IBig as TryFrom<Repr>>::Error>

Performs the conversion.
source§

impl TryFrom<f32> for IBig

§

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

§

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
source§

impl Eq for IBig

source§

impl StructuralPartialEq for IBig

Auto Trait Implementations§

§

impl Freeze for IBig

§

impl RefUnwindSafe for IBig

§

impl Send for IBig

§

impl Sync for IBig

§

impl Unpin for IBig

§

impl UnwindSafe for IBig

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<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> 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,

§

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§

default 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>,

§

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>,

§

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.