Struct dashu_float::FBig

source ·
pub struct FBig<RoundingMode: Round = Zero, const BASE: Word = 2> { /* private fields */ }
Expand description

An arbitrary precision floating point number with arbitrary base and rounding mode.

The float number consists of a Repr and a Context. The Repr instance determines the value of the number, and the Context contains runtime information (such as precision limit, rounding mode, etc.)

For how the number is represented, see Repr, for how the precision limit and rounding mode is applied, see Context.

The arithmetic operations on FBig follows the behavior of its associated context. If a different precision limit and/or rounding mode is required, or the rounding information has to be preserved, use the methods of the Context type.

§Generic Parameters

The const generic parameters will be abbreviated as BASE -> B, RoundingMode -> R. THe BASE must be in range [2, isize::MAX], and the RoundingMode can be chosen from the mode module.

With the default generic parameters, the floating number is of base 2 rounded towards zero. This is the most efficient format for operations. To represent a decimal number, the alias DBig is provided, which is base 10 rounded to the nearest.

§Parsing and printing

To create a FBig instance, there are four ways:

  1. Use predifined constants (e.g. FBig::ZERO, FBig::ONE, FBig::NEG_INFINITY).
  2. Use the literal macro fbig! or dbig! defined in the dashu-macro crate.
  3. Construct from the significand and exponent using from_parts() or from_parts_const().
  4. Parse from a string.

Conversion from and to str is limited to native radix (i.e. base). To print or parse with different radix, please use to_binary(), to_decimal() or with_base(), with_base_and_precision() to convert.

For printing, currently only the Display and Debug are supported. Other formatting traits will be supported in future.

use core::str::FromStr;

// parsing
let a = DBig::from_parts(123456789.into(), -5);
let b = DBig::from_str("1234.56789")?;
let c = DBig::from_str("1.23456789e3")?;
assert_eq!(a, b);
assert_eq!(b, c);

// printing
assert_eq!(format!("{}", DBig::from_str("12.34")?), "12.34");
let x = DBig::from_str("10.01")?
    .with_precision(0) // use unlimited precision
    .value();
if dashu_int::Word::BITS == 64 {
    // number of digits to display depends on the word size
    assert_eq!(
        format!("{:?}", x.powi(100.into())),
        "1105115697720767968..1441386704950100001 * 10 ^ -200 (prec: 0)"
    );
}

For detailed information of parsing, refer to the from_str_native() method.

§Restriction on binary operators

Binary operators on FBig instances are restricted to the same base and same rounding mode. This is designed to make sure that no hidden conversion is performed during the operators. However, for equality test and comparsion, two FBig instances can have different rounding modes (but not different bases), because rounding will never happends during comparison.

The infinities are converted as it is, and the subnormals are converted using its actual values.

§IEEE 754 behavior compliance

The representation of the floating point number doesn’t follows the IEEE 754 standard, as it’s not designed for arbitrary precision numbers. The key differences include:

  • FBig doesn’t support NaN values. In places where IEEE 754 operations generate NaNs, FBig will panic.
  • FBig doesn’t have subnormal values.
  • FBig doesn’t have negative zeros¹. There is only on zero value (FBig::ZERO).
  • Division by zero and logarithm on zero panic instead of returning infinities.
  • FBig operations will panic if the result overflows or underflows¹.
  • FBig does support infinities, but currently infinities are not allowed to be operated with, except for equality test and comparison¹.

¹ These behaviors are subject to changes in the future.

§Convert from/to f32/f64

Converting from f32/f64 to FBig is only defined for base 2 FBig (using TryFrom) to ensure the conversion is lossless. Since FBig doesn’t support NANs, converting f32::NAN or f64::NAN will return Err.

Converting to f32/f64 (using to_f32() and to_f64()) can be lossy, and the rounding direction is contained in the result of these two methods. To use the default IEEE 754 rounding mode (rounding to nearest), the Repr::to_f32 and Repr::to_f64 methods can be used for convenience.

§Convert from/to UBig/IBig

Converting from UBig and IBig is trivial and lossless through From. However, the reverse direction can be lossy.

The TryFrom trait and to_int() method are the two supported ways to convert from FBig to IBig. To convert to UBig, please first convert to IBig. When converting to IBig, TryFrom returns Ok only when the floating point number is not infinite and doesn’t have fractional part. To convert with rounding, use to_int() instead.

Implementations§

source§

impl<R: Round, const B: Word> FBig<R, B>

source

pub fn to_decimal(&self) -> Rounded<FBig<HalfAway, 10>>

Convert the float number to base 10 (with decimal exponents) rounding to even and tying away from zero.

It’s equivalent to self.with_rounding::<HalfAway>().with_base::<10>(). The output is directly of type DBig.

See with_base() for the precision behavior.

§Examples
use dashu_base::Approximation::*;
use dashu_float::round::Rounding::*;

type Real = FBig;

assert_eq!(
    Real::from_str("0x1234")?.to_decimal(),
    Exact(DBig::from_str("4660")?)
);
assert_eq!(
    Real::from_str("0x12.34")?.to_decimal(),
    Inexact(DBig::from_str("18.20")?, NoOp)
);
assert_eq!(
    Real::from_str("0x1.234p-4")?.to_decimal(),
    Inexact(DBig::from_str("0.07111")?, AddOne)
);
§Panics

Panics if the associated context has unlimited precision and the conversion cannot be performed losslessly.

source

pub fn to_binary(&self) -> Rounded<FBig<Zero, 2>>

Convert the float number to base 2 (with binary exponents) rounding towards zero.

It’s equivalent to self.with_rounding::<Zero>().with_base::<2>().

See with_base() for the precision and rounding behavior.

§Examples
use dashu_base::Approximation::*;
use dashu_float::round::{mode::HalfAway, Rounding::*};

type Real = FBig;

assert_eq!(
    DBig::from_str("1234")?.to_binary(),
    Exact(Real::from_str("0x4d2")?)
);
assert_eq!(
    DBig::from_str("12.34")?.to_binary(),
    Inexact(Real::from_str("0xc.57")?, NoOp)
);
assert_eq!(
    DBig::from_str("1.234e-1")?.to_binary(),
    Inexact(Real::from_str("0x1.f97p-4")?, NoOp)
);
§Panics

Panics if the associated context has unlimited precision and the conversion cannot be performed losslessly.

source

pub fn with_precision(self, precision: usize) -> Rounded<Self>

Explicitly change the precision of the float number.

If the given precision is less than the current value in the context, it will be rounded with the rounding mode specified by the generic parameter.

§Examples
use dashu_base::Approximation::*;
use dashu_float::round::{mode::HalfAway, Rounding::*};

let a = DBig::from_str("2.345")?;
assert_eq!(a.precision(), 4);
assert_eq!(
    a.clone().with_precision(3),
    Inexact(DBig::from_str("2.35")?, AddOne)
);
assert_eq!(
    a.clone().with_precision(5),
    Exact(DBig::from_str("2.345")?)
);
source

pub fn with_rounding<NewR: Round>(self) -> FBig<NewR, B>

Explicitly change the rounding mode of the number.

This operation doesn’t modify the underlying representation, it only changes the rounding mode in the context.

§Examples
use dashu_base::Approximation::*;
use dashu_float::round::{mode::{HalfAway, Zero}, Rounding::*};

type DBigHalfAway = DBig;
type DBigZero = FBig::<Zero, 10>;

let a = DBigHalfAway::from_str("2.345")?;
let b = DBigZero::from_str("2.345")?;
assert_eq!(a.with_rounding::<Zero>(), b);
source

pub fn with_base<const NewB: Word>(self) -> Rounded<FBig<R, NewB>>

Explicitly change the base of the float number.

This function internally calls with_base_and_precision. The precision of the result number will be calculated in such a way that the new limit of the significand is less than or equal to before. That is, the new precision will be the max integer such that

NewB ^ new_precision <= B ^ old_precision

If any rounding happens during the conversion, it follows the rounding mode specified by the generic parameter.

§Examples
use dashu_base::Approximation::*;
use dashu_float::round::{mode::Zero, Rounding::*};

type FBin = FBig;
type FDec = FBig<Zero, 10>;
type FHex = FBig<Zero, 16>;

let a = FBin::from_str("0x1.234")?; // 0x1234 * 2^-12
assert_eq!(
    a.clone().with_base::<10>(),
    // 1.1376953125 rounded towards zero
    Inexact(FDec::from_str("1.137")?, NoOp)
);
assert_eq!(
    a.clone().with_base::<16>(),
    // conversion is exact when the new base is a power of the old base
    Exact(FHex::from_str("1.234")?)
);
§Panics

Panics if the associated context has unlimited precision and the conversion cannot be performed losslessly.

source

pub fn with_base_and_precision<const NewB: Word>( self, precision: usize ) -> Rounded<FBig<R, NewB>>

Explicitly change the base of the float number with given precision (under the new base).

Infinities are mapped to infinities inexactly, the error will be NoOp.

Conversion for float numbers with unlimited precision is only allowed in following cases:

  • The number is infinite
  • The new base NewB is a power of B
  • B is a power of the new base NewB
§Examples
use dashu_base::Approximation::*;
use dashu_float::round::{mode::Zero, Rounding::*};

type FBin = FBig;
type FDec = FBig<Zero, 10>;
type FHex = FBig<Zero, 16>;

let a = FBin::from_str("0x1.234")?; // 0x1234 * 2^-12
assert_eq!(
    a.clone().with_base_and_precision::<10>(8),
    // 1.1376953125 rounded towards zero
    Inexact(FDec::from_str("1.1376953")?, NoOp)
);
assert_eq!(
    a.clone().with_base_and_precision::<16>(8),
    // conversion can be exact when the new base is a power of the old base
    Exact(FHex::from_str("1.234")?)
);
assert_eq!(
    a.clone().with_base_and_precision::<16>(2),
    // but the conversion is still inexact if the target precision is smaller
    Inexact(FHex::from_str("1.2")?, NoOp)
);
§Panics

Panics if the associated context has unlimited precision and the conversion cannot be performed losslessly.

source

pub fn to_int(&self) -> Rounded<IBig>

Convert the float number to integer with the given rounding mode.

§Warning

If the float number has a very large exponent, it will be evaluated and result in allocating an huge integer and it might eat up all your memory.

To get a rough idea of how big the number is, it’s recommended to use EstimatedLog2.

§Examples
use dashu_base::Approximation::*;
use dashu_float::round::Rounding::*;

assert_eq!(
    DBig::from_str("1234")?.to_int(),
    Exact(1234.into())
);
assert_eq!(
    DBig::from_str("1.234e6")?.to_int(),
    Exact(1234000.into())
);
assert_eq!(
    DBig::from_str("1.234")?.to_int(),
    Inexact(1.into(), NoOp)
);
§Panics

Panics if the number is infinte

source

pub fn to_f32(&self) -> Rounded<f32>

Convert the float number to f32 with the rounding mode associated with the type.

Note that the conversion is inexact even if the number is infinite.

§Examples
assert_eq!(DBig::from_str("1.234")?.to_f32().value(), 1.234);
assert_eq!(DBig::INFINITY.to_f32().value(), f32::INFINITY);
source

pub fn to_f64(&self) -> Rounded<f64>

Convert the float number to f64 with HalfEven rounding mode regardless of the mode associated with this number.

Note that the conversion is inexact even if the number is infinite.

§Examples
assert_eq!(DBig::from_str("1.234")?.to_f64().value(), 1.234);
assert_eq!(DBig::INFINITY.to_f64().value(), f64::INFINITY);
source§

impl<R: Round, const B: Word> FBig<R, B>

source

pub fn powi(&self, exp: IBig) -> FBig<R, B>

Raise the floating point number to an integer power.

§Examples
let a = DBig::from_str_native("-1.234")?;
assert_eq!(a.powi(10.into()), DBig::from_str_native("8.188")?);
source

pub fn powf(&self, exp: &Self) -> Self

Raise the floating point number to an floating point power.

§Examples
let x = DBig::from_str_native("1.23")?;
let y = DBig::from_str_native("-4.56")?;
assert_eq!(x.powf(&y), DBig::from_str_native("0.389")?);
source

pub fn exp(&self) -> FBig<R, B>

Calculate the exponential function () on the floating point number.

§Examples
let a = DBig::from_str_native("-1.234")?;
assert_eq!(a.exp(), DBig::from_str_native("0.2911")?);
source

pub fn exp_m1(&self) -> FBig<R, B>

Calculate the exponential minus one function (eˣ-1) on the floating point number.

§Examples
let a = DBig::from_str_native("-0.1234")?;
assert_eq!(a.exp_m1(), DBig::from_str_native("-0.11609")?);
source§

impl<R: Round, const B: Word> FBig<R, B>

source

pub fn from_repr(repr: Repr<B>, context: Context<R>) -> Self

Create a FBig instance from Repr and Context.

This method should not be used in most cases. It’s designed to be used when you hold a Repr instance and want to create an FBig from that.

§Examples
use dashu_float::{Repr, Context};

assert_eq!(DBig::from_repr(Repr::one(), Context::new(1)), DBig::ONE);
assert_eq!(DBig::from_repr(Repr::infinity(), Context::new(1)), DBig::INFINITY);
§Panics

Panics if the Repr has more digits than the precision limit specified in the context. Note that this condition is not checked in release builds.

source

pub const fn from_repr_const(repr: Repr<B>) -> Self

Create a FBig instance from Repr. Due to the limitation of const operations, the precision of the float is set to unlimited.

§Examples
use dashu_float::{Repr, Context};

assert_eq!(DBig::from_repr_const(Repr::one()), DBig::ONE);
assert_eq!(DBig::from_repr_const(Repr::infinity()), DBig::INFINITY);
source

pub const ZERO: Self = _

FBig with value 0 and unlimited precision

To test if the float number is zero, use self.repr().is_zero().

source

pub const ONE: Self = _

FBig with value 1 and unlimited precision

To test if the float number is one, use self.repr().is_one().

source

pub const NEG_ONE: Self = _

FBig with value -1 and unlimited precision

source

pub const INFINITY: Self = _

FBig instance representing the positive infinity (+∞)

To test if the float number is infinite, use self.repr().infinite().

source

pub const NEG_INFINITY: Self = _

FBig instance representing the negative infinity (-∞)

To test if the float number is infinite, use self.repr().infinite().

source

pub const fn precision(&self) -> usize

Get the maximum precision set for the float number.

It’s equivalent to self.context().precision().

§Examples
use dashu_float::Repr;

let a = DBig::from_str("1.234")?;
assert!(a.repr().significand() <= &IBig::from(10).pow(a.precision()));
source

pub fn digits(&self) -> usize

Get the number of the significant digits in the float number

It’s equivalent to self.repr().digits().

This value is also the actual precision needed for the float number. Shrink to this value using with_precision() will not cause loss of float precision.

§Examples
use dashu_base::Approximation::*;

let a = DBig::from_str("-1.234e-3")?;
assert_eq!(a.digits(), 4);
assert!(matches!(a.clone().with_precision(4), Exact(_)));
assert!(matches!(a.clone().with_precision(3), Inexact(_, _)));
source

pub const fn context(&self) -> Context<R>

Get the context associated with the float number

source

pub const fn repr(&self) -> &Repr<B>

Get a reference to the underlying numeric representation

source

pub fn into_repr(self) -> Repr<B>

Get the underlying numeric representation

§Examples
use dashu_float::Repr;

let a = DBig::ONE;
assert_eq!(a.into_repr(), Repr::<10>::one());
source

pub fn from_parts(significand: IBig, exponent: isize) -> Self

Convert raw parts (significand, exponent) into a float number.

The precision will be inferred from significand (the lowest k such that significand <= base^k)

§Examples
use core::str::FromStr;
let a = DBig::from_parts((-1234).into(), -2);
assert_eq!(a, DBig::from_str("-12.34")?);
assert_eq!(a.precision(), 4); // 1234 has 4 (decimal) digits
source

pub const fn from_parts_const( sign: Sign, significand: DoubleWord, exponent: isize, min_precision: Option<usize> ) -> Self

Convert raw parts (significand, exponent) into a float number in a const context.

It requires that the significand fits in a DoubleWord.

The precision will be inferred from significand (the lowest k such that significand <= base^k). If the min_precision is provided, then the higher one from the given and inferred precision will be used as the final precision.

§Examples
use core::str::FromStr;
use dashu_base::Sign;

const A: DBig = DBig::from_parts_const(Sign::Negative, 1234, -2, None);
assert_eq!(A, DBig::from_str("-12.34")?);
assert_eq!(A.precision(), 4); // 1234 has 4 (decimal) digits

const B: DBig = DBig::from_parts_const(Sign::Negative, 1234, -2, Some(5));
assert_eq!(B.precision(), 5); // overrided by the argument
source

pub fn ulp(&self) -> Self

Return the value of the least significant digit of the float number x, such that x + ulp is the first float number greater than x (given the precision from the context).

§Examples
assert_eq!(DBig::from_str("1.23")?.ulp(), DBig::from_str("0.01")?);
assert_eq!(DBig::from_str("01.23")?.ulp(), DBig::from_str("0.001")?);
§Panics

Panics if the precision of the number is 0 (unlimited).

source§

impl<R: Round, const B: Word> FBig<R, B>

source

pub fn ln(&self) -> Self

Calculate the natural logarithm function (log(x)) on the float number.

§Examples
let a = DBig::from_str("1.234")?;
assert_eq!(a.ln(), DBig::from_str("0.2103")?);
source

pub fn ln_1p(&self) -> Self

Calculate the natural logarithm function (log(x+1)) on the float number

§Examples
let a = DBig::from_str("0.1234")?;
assert_eq!(a.ln_1p(), DBig::from_str("0.11636")?);
source§

impl<R: Round, const B: Word> FBig<R, B>

source

pub fn sqr(&self) -> Self

Compute the square of this number (self * self)

§Examples
let a = DBig::from_str("-1.234")?;
assert_eq!(a.sqr(), DBig::from_str("1.523")?);
source

pub fn cubic(&self) -> Self

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

§Examples
let a = DBig::from_str("-1.234")?;
assert_eq!(a.cubic(), DBig::from_str("-1.879")?);
source§

impl<R: Round, const B: Word> FBig<R, B>

source

pub fn from_str_native(src: &str) -> Result<Self, ParseError>

👎Deprecated since 0.5.0: from_str_native will be removed in v0.5. Use core::str::FromStr instead.

Convert a string in the native base (i.e. radix B) to FBig.

If the parsing succeeded, the result number will be losslessly parsed from the input string.

This function is the actual implementation of the FromStr trait.

Note: Infinites are intentionally not supported by this function.

§Format

The valid representations include

  1. aaa or aaa.
    • aaa is represented in native base B without base prefixes.
  2. aaa.bbb = aaabbb / base ^ len(bbb)
    • aaa and bbb are represented in native base B without base prefixes.
    • len(bbb) represents the number of digits in bbb, e.g len(bbb) is 3. (Same below)
  3. aaa.bbb@cc = aaabbb * base ^ (cc - len(bbb))
    • aaa and bbb are represented in native base B
    • This is consistent with the representation used by GNU GMP.
  4. aaa.bbbEcc = aaabbb * 10 ^ (cc - len(bbb))
    • E could be lower case, base B must be 10
    • aaa and bbb are all represented in decimal
  5. 0xaaa or 0xaaa
  6. 0xaaa.bbb = 0xaaabbb / 16 ^ len(bbb)
  7. 0xaaa.bbbPcc = 0xaaabbb / 16 ^ len(bbb) * 2 ^ cc
    • P could be lower case, base B must be 2 (not 16!)
    • aaa and bbb are represented in hexadecimal
    • This is consistent with the C++ hexadecimal literals.
  8. aaa.bbbBcc = aaabbb * 2 ^ (cc - len(bbb))
  9. aaa.bbbOcc = aaabbb * 8 ^ (cc - len(bbb))
  10. aaa.bbbHcc = aaabbb * 16 ^ (cc - len(bbb))
    • B/O/H could be lower case, and base B must be consistent with the marker.
    • aaa and bbb are represented in binary/octal/hexadecimal correspondingly without prefix.
    • This is consistent with some scientific notations described in Wikipedia.

Digits 10-35 are represented by a-z or A-Z.

Literal aaa and cc above can be signed, but bbb must be unsigned. All cc are represented in decimal. Either aaa or bbb can be omitted when its value is zero, but they are not allowed to be omitted at the same time.

§Precision

The precision of the parsed number is determined by the number of digits that are presented in the input string. For example, the numbers parsed from 12.34 or 1.234e-1 will have a precision of 4, while the ones parsed from 12.34000 or 00012.34 will have a precision of 7.

§Examples
use dashu_base::Approximation::*;

let a = DBig::from_str_native("-1.23400e-3")?;
let b = DBig::from_str_native("-123.4@-05")?;
assert_eq!(a, b);
assert_eq!(a.precision(), 6);
assert_eq!(b.precision(), 4);

assert!(DBig::from_str_native("-0x1.234p-3").is_err());
assert!(DBig::from_str_native("-1.234H-3").is_err());
§Panics

Panics if the base B is not between MIN_RADIX and MAX_RADIX inclusive.

source§

impl<R: Round, const B: Word> FBig<R, B>

source

pub fn trunc(&self) -> Self

Get the integral part of the float

See FBig::round for how the output precision is determined.

§Examples
let a = DBig::from_str("1.234")?;
assert_eq!(a.trunc(), DBig::from_str("1")?);
// the actual precision of the integral part is 1 digit
assert_eq!(a.trunc().precision(), 1);
§Panics

Panics if the number is infinte

source

pub fn split_at_point(self) -> (Self, Self)

Split the rational number into integral and fractional parts (split at the radix point)

It’s equivalent to (self.trunc(), self.fract())

§Examples
let a = DBig::from_str("1.234")?;
let (trunc, fract) = a.split_at_point();
assert_eq!(trunc, DBig::from_str("1.0")?);
assert_eq!(fract, DBig::from_str("0.234")?);
// the actual precision of the fractional part is 3 digits
assert_eq!(trunc.precision(), 1);
assert_eq!(fract.precision(), 3);
source

pub fn fract(&self) -> Self

Get the fractional part of the float

Note: this function will adjust the precision accordingly!

§Examples
let a = DBig::from_str("1.234")?;
assert_eq!(a.fract(), DBig::from_str("0.234")?);
// the actual precision of the fractional part is 3 digits
assert_eq!(a.fract().precision(), 3);
§Panics

Panics if the number is infinte

source

pub fn ceil(&self) -> Self

Returns the smallest integer greater than or equal to self.

See FBig::round for how the output precision is determined.

§Examples
let a = DBig::from_str("1.234")?;
assert_eq!(a.ceil(), DBig::from_str("2")?);

// works for very large exponent
let b = DBig::from_str("1.234e10000")?;
assert_eq!(b.ceil(), b);
§Panics

Panics if the number is infinte

source

pub fn floor(&self) -> Self

Returns the largest integer less than or equal to self.

See FBig::round for how the output precision is determined.

§Examples
let a = DBig::from_str("1.234")?;
assert_eq!(a.floor(), DBig::from_str("1")?);

// works for very large exponent
let b = DBig::from_str("1.234e10000")?;
assert_eq!(b.floor(), b);
§Panics

Panics if the number is infinte

source

pub fn round(&self) -> Self

Returns the integer nearest to self.

If there are two integers equally close, then the one farther from zero is chosen.

§Examples
let a = DBig::from_str("1.234")?;
assert_eq!(a.round(), DBig::from_str("1")?);

// works for very large exponent
let b = DBig::from_str("1.234e10000")?;
assert_eq!(b.round(), b);
§Precision

If self is an integer, the result will have the same precision as self. If self has fractional part, then the precision will be subtracted by the digits in the fractional part. Examples:

  • 1.00e100 (precision = 3) rounds to 1.00e100 (precision = 3)
  • 1.234 (precision = 4) rounds to 1. (precision = 1)
  • 1.234e-10 (precision = 4) rounds to 0. (precision = 0, i.e arbitrary precision)
§Panics

Panics if the number is infinte

source§

impl<R: Round, const B: Word> FBig<R, B>

source

pub const fn sign(&self) -> Sign

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

§Examples
assert_eq!(DBig::ZERO.sign(), Sign::Positive);
assert_eq!(DBig::from_str("-1.234")?.sign(), Sign::Negative);
source

pub const fn signum(&self) -> Self

A number representing the sign of self.

§Examples
assert_eq!(DBig::from_str("2.01")?.signum(), DBig::ONE);
assert_eq!(DBig::from_str("-1.234")?.signum(), DBig::NEG_ONE);

Trait Implementations§

source§

impl<R: Round, const B: Word> Abs for FBig<R, B>

§

type Output = FBig<R, B>

source§

fn abs(self) -> Self::Output

source§

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

source§

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

source§

impl<R: Round, const B: Word> AbsOrd<FBig<R, B>> for UBig

source§

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

source§

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

source§

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

source§

impl<R: Round, const B: Word> AbsOrd<UBig> for FBig<R, B>

source§

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

source§

impl<R: Round, const B: Word> AbsOrd for FBig<R, B>

source§

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

source§

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

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Add<&'r FBig<R, B>> for &'l UBig

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Add<&'r FBig<R, B>> for &'l i128

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Add<&'r FBig<R, B>> for &'l i16

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Add<&'r FBig<R, B>> for &'l i32

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Add<&'r FBig<R, B>> for &'l i64

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Add<&'r FBig<R, B>> for &'l i8

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Add<&'r FBig<R, B>> for &'l isize

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Add<&'r FBig<R, B>> for &'l u128

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Add<&'r FBig<R, B>> for &'l u16

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Add<&'r FBig<R, B>> for &'l u32

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Add<&'r FBig<R, B>> for &'l u8

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Add<&'r FBig<R, B>> for &'l usize

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'r, R: Round, const B: Word> Add<&'r FBig<R, B>> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'r, R: Round, const B: Word> Add<&'r FBig<R, B>> for UBig

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'r, R: Round, const B: Word> Add<&'r FBig<R, B>> for i128

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'r, R: Round, const B: Word> Add<&'r FBig<R, B>> for i16

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'r, R: Round, const B: Word> Add<&'r FBig<R, B>> for i32

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'r, R: Round, const B: Word> Add<&'r FBig<R, B>> for i64

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'r, R: Round, const B: Word> Add<&'r FBig<R, B>> for i8

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'r, R: Round, const B: Word> Add<&'r FBig<R, B>> for isize

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'r, R: Round, const B: Word> Add<&'r FBig<R, B>> for u128

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'r, R: Round, const B: Word> Add<&'r FBig<R, B>> for u16

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'r, R: Round, const B: Word> Add<&'r FBig<R, B>> for u32

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'r, R: Round, const B: Word> Add<&'r FBig<R, B>> for u8

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'r, R: Round, const B: Word> Add<&'r FBig<R, B>> for usize

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Add<&'r UBig> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'r, R: Round, const B: Word> Add<&'r UBig> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Add<&'r i128> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'r, R: Round, const B: Word> Add<&'r i128> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Add<&'r i16> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'r, R: Round, const B: Word> Add<&'r i16> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Add<&'r i32> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'r, R: Round, const B: Word> Add<&'r i32> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Add<&'r i64> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'r, R: Round, const B: Word> Add<&'r i64> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Add<&'r i8> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'r, R: Round, const B: Word> Add<&'r i8> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Add<&'r isize> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'r, R: Round, const B: Word> Add<&'r isize> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Add<&'r u128> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'r, R: Round, const B: Word> Add<&'r u128> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Add<&'r u16> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'r, R: Round, const B: Word> Add<&'r u16> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Add<&'r u32> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'r, R: Round, const B: Word> Add<&'r u32> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Add<&'r u8> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'r, R: Round, const B: Word> Add<&'r u8> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Add<&'r usize> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'r, R: Round, const B: Word> Add<&'r usize> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'l, R: Round, const B: Word> Add<FBig<R, B>> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, R: Round, const B: Word> Add<FBig<R, B>> for &'l UBig

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, R: Round, const B: Word> Add<FBig<R, B>> for &'l i128

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, R: Round, const B: Word> Add<FBig<R, B>> for &'l i16

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, R: Round, const B: Word> Add<FBig<R, B>> for &'l i32

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, R: Round, const B: Word> Add<FBig<R, B>> for &'l i64

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, R: Round, const B: Word> Add<FBig<R, B>> for &'l i8

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, R: Round, const B: Word> Add<FBig<R, B>> for &'l isize

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, R: Round, const B: Word> Add<FBig<R, B>> for &'l u128

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, R: Round, const B: Word> Add<FBig<R, B>> for &'l u16

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, R: Round, const B: Word> Add<FBig<R, B>> for &'l u32

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, R: Round, const B: Word> Add<FBig<R, B>> for &'l u8

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, R: Round, const B: Word> Add<FBig<R, B>> for &'l usize

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> Add<FBig<R, B>> for UBig

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> Add<FBig<R, B>> for i128

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> Add<FBig<R, B>> for i16

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> Add<FBig<R, B>> for i32

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> Add<FBig<R, B>> for i64

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> Add<FBig<R, B>> for i8

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> Add<FBig<R, B>> for isize

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> Add<FBig<R, B>> for u128

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> Add<FBig<R, B>> for u16

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> Add<FBig<R, B>> for u32

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> Add<FBig<R, B>> for u8

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> Add<FBig<R, B>> for usize

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: FBig<R, B>) -> Self::Output

Performs the + operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl<'l, R: Round, const B: Word> Add<UBig> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: UBig) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> Add<UBig> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: UBig) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, R: Round, const B: Word> Add<i128> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: i128) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> Add<i128> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: i128) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, R: Round, const B: Word> Add<i16> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: i16) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> Add<i16> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: i16) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, R: Round, const B: Word> Add<i32> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: i32) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> Add<i32> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: i32) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, R: Round, const B: Word> Add<i64> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: i64) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> Add<i64> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: i64) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, R: Round, const B: Word> Add<i8> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: i8) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> Add<i8> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: i8) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, R: Round, const B: Word> Add<isize> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: isize) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> Add<isize> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: isize) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, R: Round, const B: Word> Add<u128> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: u128) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> Add<u128> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: u128) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, R: Round, const B: Word> Add<u16> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: u16) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> Add<u16> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: u16) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, R: Round, const B: Word> Add<u32> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: u32) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> Add<u32> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: u32) -> Self::Output

Performs the + operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: u64) -> Self::Output

Performs the + operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: u64) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, R: Round, const B: Word> Add<u8> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: u8) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> Add<u8> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: u8) -> Self::Output

Performs the + operation. Read more
source§

impl<'l, R: Round, const B: Word> Add<usize> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: usize) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> Add<usize> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: usize) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> Add for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<&FBig<R, B>> for FBig<R, B>

source§

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

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<&IBig> for FBig<R, B>

source§

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

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<&UBig> for FBig<R, B>

source§

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

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<&i128> for FBig<R, B>

source§

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

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<&i16> for FBig<R, B>

source§

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

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<&i32> for FBig<R, B>

source§

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

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<&i64> for FBig<R, B>

source§

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

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<&i8> for FBig<R, B>

source§

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

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<&isize> for FBig<R, B>

source§

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

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<&u128> for FBig<R, B>

source§

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

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<&u16> for FBig<R, B>

source§

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

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<&u32> for FBig<R, B>

source§

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

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<&u64> for FBig<R, B>

source§

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

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<&u8> for FBig<R, B>

source§

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

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<&usize> for FBig<R, B>

source§

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

Performs the += operation. Read more
source§

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

source§

fn add_assign(&mut self, rhs: IBig)

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<UBig> for FBig<R, B>

source§

fn add_assign(&mut self, rhs: UBig)

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<i128> for FBig<R, B>

source§

fn add_assign(&mut self, rhs: i128)

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<i16> for FBig<R, B>

source§

fn add_assign(&mut self, rhs: i16)

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<i32> for FBig<R, B>

source§

fn add_assign(&mut self, rhs: i32)

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<i64> for FBig<R, B>

source§

fn add_assign(&mut self, rhs: i64)

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<i8> for FBig<R, B>

source§

fn add_assign(&mut self, rhs: i8)

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<isize> for FBig<R, B>

source§

fn add_assign(&mut self, rhs: isize)

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<u128> for FBig<R, B>

source§

fn add_assign(&mut self, rhs: u128)

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<u16> for FBig<R, B>

source§

fn add_assign(&mut self, rhs: u16)

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<u32> for FBig<R, B>

source§

fn add_assign(&mut self, rhs: u32)

Performs the += operation. Read more
source§

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

source§

fn add_assign(&mut self, rhs: u64)

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<u8> for FBig<R, B>

source§

fn add_assign(&mut self, rhs: u8)

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign<usize> for FBig<R, B>

source§

fn add_assign(&mut self, rhs: usize)

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> AddAssign for FBig<R, B>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl<R: Round, const B: Word> Clone for FBig<R, B>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
source§

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

Performs copy-assignment from source. Read more
source§

impl<R: Round, const B: Word> Debug for FBig<R, B>

source§

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

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

impl<R: Round, const B: Word> Default for FBig<R, B>

source§

fn default() -> Self

Default value: 0.

source§

impl<'de, R: Round, const B: Word> Deserialize<'de> for FBig<R, B>

source§

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

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

impl<R: Round, const B: Word> Display for FBig<R, B>

source§

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

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

impl<R: Round, const B: Word> Distribution<FBig<R, B>> for Open01

source§

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

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

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

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

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

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

impl<R: Round, const B: Word> Distribution<FBig<R, B>> for OpenClosed01

source§

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

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

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

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

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

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

impl<R: Round, const B: Word> Distribution<FBig<R, B>> for Standard

source§

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

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

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

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

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

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

impl<R: Round, const B: Word> Distribution<FBig<R, B>> for Uniform01<B>

source§

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

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

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

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

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

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

impl<R: Round, const B: Word> Distribution<FBig<R, B>> for UniformFBig<R, B>

source§

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

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

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

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

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

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

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

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Div<&'r FBig<R, B>> for &'l UBig

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Div<&'r FBig<R, B>> for &'l i128

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Div<&'r FBig<R, B>> for &'l i16

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Div<&'r FBig<R, B>> for &'l i32

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Div<&'r FBig<R, B>> for &'l i64

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Div<&'r FBig<R, B>> for &'l i8

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Div<&'r FBig<R, B>> for &'l isize

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Div<&'r FBig<R, B>> for &'l u128

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Div<&'r FBig<R, B>> for &'l u16

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Div<&'r FBig<R, B>> for &'l u32

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Div<&'r FBig<R, B>> for &'l u8

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Div<&'r FBig<R, B>> for &'l usize

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'r, R: Round, const B: Word> Div<&'r FBig<R, B>> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'r, R: Round, const B: Word> Div<&'r FBig<R, B>> for UBig

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'r, R: Round, const B: Word> Div<&'r FBig<R, B>> for i128

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'r, R: Round, const B: Word> Div<&'r FBig<R, B>> for i16

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'r, R: Round, const B: Word> Div<&'r FBig<R, B>> for i32

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'r, R: Round, const B: Word> Div<&'r FBig<R, B>> for i64

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'r, R: Round, const B: Word> Div<&'r FBig<R, B>> for i8

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'r, R: Round, const B: Word> Div<&'r FBig<R, B>> for isize

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'r, R: Round, const B: Word> Div<&'r FBig<R, B>> for u128

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'r, R: Round, const B: Word> Div<&'r FBig<R, B>> for u16

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'r, R: Round, const B: Word> Div<&'r FBig<R, B>> for u32

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'r, R: Round, const B: Word> Div<&'r FBig<R, B>> for u8

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'r, R: Round, const B: Word> Div<&'r FBig<R, B>> for usize

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Div<&'r UBig> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'r, R: Round, const B: Word> Div<&'r UBig> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Div<&'r i128> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'r, R: Round, const B: Word> Div<&'r i128> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Div<&'r i16> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'r, R: Round, const B: Word> Div<&'r i16> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Div<&'r i32> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'r, R: Round, const B: Word> Div<&'r i32> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Div<&'r i64> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'r, R: Round, const B: Word> Div<&'r i64> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Div<&'r i8> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'r, R: Round, const B: Word> Div<&'r i8> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Div<&'r isize> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'r, R: Round, const B: Word> Div<&'r isize> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Div<&'r u128> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'r, R: Round, const B: Word> Div<&'r u128> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Div<&'r u16> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'r, R: Round, const B: Word> Div<&'r u16> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Div<&'r u32> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'r, R: Round, const B: Word> Div<&'r u32> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Div<&'r u8> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'r, R: Round, const B: Word> Div<&'r u8> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Div<&'r usize> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'r, R: Round, const B: Word> Div<&'r usize> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'l, R: Round, const B: Word> Div<FBig<R, B>> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, R: Round, const B: Word> Div<FBig<R, B>> for &'l UBig

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, R: Round, const B: Word> Div<FBig<R, B>> for &'l i128

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, R: Round, const B: Word> Div<FBig<R, B>> for &'l i16

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, R: Round, const B: Word> Div<FBig<R, B>> for &'l i32

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, R: Round, const B: Word> Div<FBig<R, B>> for &'l i64

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, R: Round, const B: Word> Div<FBig<R, B>> for &'l i8

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, R: Round, const B: Word> Div<FBig<R, B>> for &'l isize

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, R: Round, const B: Word> Div<FBig<R, B>> for &'l u128

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, R: Round, const B: Word> Div<FBig<R, B>> for &'l u16

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, R: Round, const B: Word> Div<FBig<R, B>> for &'l u32

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, R: Round, const B: Word> Div<FBig<R, B>> for &'l u8

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, R: Round, const B: Word> Div<FBig<R, B>> for &'l usize

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> Div<FBig<R, B>> for UBig

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> Div<FBig<R, B>> for i128

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> Div<FBig<R, B>> for i16

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> Div<FBig<R, B>> for i32

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> Div<FBig<R, B>> for i64

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> Div<FBig<R, B>> for i8

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> Div<FBig<R, B>> for isize

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> Div<FBig<R, B>> for u128

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> Div<FBig<R, B>> for u16

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> Div<FBig<R, B>> for u32

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> Div<FBig<R, B>> for u8

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> Div<FBig<R, B>> for usize

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl<'l, R: Round, const B: Word> Div<UBig> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: UBig) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> Div<UBig> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: UBig) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, R: Round, const B: Word> Div<i128> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: i128) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> Div<i128> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: i128) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, R: Round, const B: Word> Div<i16> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: i16) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> Div<i16> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: i16) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, R: Round, const B: Word> Div<i32> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: i32) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> Div<i32> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: i32) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, R: Round, const B: Word> Div<i64> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: i64) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> Div<i64> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: i64) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, R: Round, const B: Word> Div<i8> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: i8) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> Div<i8> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: i8) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, R: Round, const B: Word> Div<isize> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: isize) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> Div<isize> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: isize) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, R: Round, const B: Word> Div<u128> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: u128) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> Div<u128> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: u128) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, R: Round, const B: Word> Div<u16> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: u16) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> Div<u16> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: u16) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, R: Round, const B: Word> Div<u32> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: u32) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> Div<u32> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: u32) -> Self::Output

Performs the / operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: u64) -> Self::Output

Performs the / operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: u64) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, R: Round, const B: Word> Div<u8> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: u8) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> Div<u8> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: u8) -> Self::Output

Performs the / operation. Read more
source§

impl<'l, R: Round, const B: Word> Div<usize> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: usize) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> Div<usize> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: usize) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> Div for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the / operator.
source§

fn div(self, rhs: FBig<R, B>) -> Self::Output

Performs the / operation. Read more
source§

impl<R: Round, const B: Word> DivAssign<&FBig<R, B>> for FBig<R, B>

source§

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

Performs the /= operation. Read more
source§

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

source§

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

Performs the /= operation. Read more
source§

impl<R: Round, const B: Word> DivAssign<&UBig> for FBig<R, B>

source§

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

Performs the /= operation. Read more
source§

impl<R: Round, const B: Word> DivAssign<&i128> for FBig<R, B>

source§

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

Performs the /= operation. Read more
source§

impl<R: Round, const B: Word> DivAssign<&i16> for FBig<R, B>

source§

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

Performs the /= operation. Read more
source§

impl<R: Round, const B: Word> DivAssign<&i32> for FBig<R, B>

source§

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

Performs the /= operation. Read more
source§

impl<R: Round, const B: Word> DivAssign<&i64> for FBig<R, B>

source§

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

Performs the /= operation. Read more
source§

impl<R: Round, const B: Word> DivAssign<&i8> for FBig<R, B>

source§

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

Performs the /= operation. Read more
source§

impl<R: Round, const B: Word> DivAssign<&isize> for FBig<R, B>

source§

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

Performs the /= operation. Read more
source§

impl<R: Round, const B: Word> DivAssign<&u128> for FBig<R, B>

source§

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

Performs the /= operation. Read more
source§

impl<R: Round, const B: Word> DivAssign<&u16> for FBig<R, B>

source§

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

Performs the /= operation. Read more
source§

impl<R: Round, const B: Word> DivAssign<&u32> for FBig<R, B>

source§

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

Performs the /= operation. Read more
source§

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

source§

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

Performs the /= operation. Read more
source§

impl<R: Round, const B: Word> DivAssign<&u8> for FBig<R, B>

source§

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

Performs the /= operation. Read more
source§

impl<R: Round, const B: Word> DivAssign<&usize> for FBig<R, B>

source§

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

Performs the /= operation. Read more
source§

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

source§

fn div_assign(&mut self, rhs: IBig)

Performs the /= operation. Read more
source§

impl<R: Round, const B: Word> DivAssign<UBig> for FBig<R, B>

source§

fn div_assign(&mut self, rhs: UBig)

Performs the /= operation. Read more
source§

impl<R: Round, const B: Word> DivAssign<i128> for FBig<R, B>

source§

fn div_assign(&mut self, rhs: i128)

Performs the /= operation. Read more
source§

impl<R: Round, const B: Word> DivAssign<i16> for FBig<R, B>

source§

fn div_assign(&mut self, rhs: i16)

Performs the /= operation. Read more
source§

impl<R: Round, const B: Word> DivAssign<i32> for FBig<R, B>

source§

fn div_assign(&mut self, rhs: i32)

Performs the /= operation. Read more
source§

impl<R: Round, const B: Word> DivAssign<i64> for FBig<R, B>

source§

fn div_assign(&mut self, rhs: i64)

Performs the /= operation. Read more
source§

impl<R: Round, const B: Word> DivAssign<i8> for FBig<R, B>

source§

fn div_assign(&mut self, rhs: i8)

Performs the /= operation. Read more
source§

impl<R: Round, const B: Word> DivAssign<isize> for FBig<R, B>

source§

fn div_assign(&mut self, rhs: isize)

Performs the /= operation. Read more
source§

impl<R: Round, const B: Word> DivAssign<u128> for FBig<R, B>

source§

fn div_assign(&mut self, rhs: u128)

Performs the /= operation. Read more
source§

impl<R: Round, const B: Word> DivAssign<u16> for FBig<R, B>

source§

fn div_assign(&mut self, rhs: u16)

Performs the /= operation. Read more
source§

impl<R: Round, const B: Word> DivAssign<u32> for FBig<R, B>

source§

fn div_assign(&mut self, rhs: u32)

Performs the /= operation. Read more
source§

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

source§

fn div_assign(&mut self, rhs: u64)

Performs the /= operation. Read more
source§

impl<R: Round, const B: Word> DivAssign<u8> for FBig<R, B>

source§

fn div_assign(&mut self, rhs: u8)

Performs the /= operation. Read more
source§

impl<R: Round, const B: Word> DivAssign<usize> for FBig<R, B>

source§

fn div_assign(&mut self, rhs: usize)

Performs the /= operation. Read more
source§

impl<R: Round, const B: Word> DivAssign for FBig<R, B>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> DivEuclid<&'r FBig<R, B>> for &'l FBig<R, B>

§

type Output = IBig

source§

fn div_euclid(self, rhs: &FBig<R, B>) -> Self::Output

source§

impl<'r, R: Round, const B: Word> DivEuclid<&'r FBig<R, B>> for FBig<R, B>

§

type Output = IBig

source§

fn div_euclid(self, rhs: &FBig<R, B>) -> Self::Output

source§

impl<'l, R: Round, const B: Word> DivEuclid<FBig<R, B>> for &'l FBig<R, B>

§

type Output = IBig

source§

fn div_euclid(self, rhs: FBig<R, B>) -> Self::Output

source§

impl<R: Round, const B: Word> DivEuclid for FBig<R, B>

§

type Output = IBig

source§

fn div_euclid(self, rhs: FBig<R, B>) -> Self::Output

source§

impl<'l, 'r, R: Round, const B: Word> DivRemEuclid<&'r FBig<R, B>> for &'l FBig<R, B>

§

type OutputDiv = IBig

§

type OutputRem = FBig<R, B>

source§

fn div_rem_euclid(self, rhs: &FBig<R, B>) -> (IBig, FBig<R, B>)

source§

impl<'r, R: Round, const B: Word> DivRemEuclid<&'r FBig<R, B>> for FBig<R, B>

§

type OutputDiv = IBig

§

type OutputRem = FBig<R, B>

source§

fn div_rem_euclid(self, rhs: &FBig<R, B>) -> (IBig, FBig<R, B>)

source§

impl<'l, R: Round, const B: Word> DivRemEuclid<FBig<R, B>> for &'l FBig<R, B>

§

type OutputDiv = IBig

§

type OutputRem = FBig<R, B>

source§

fn div_rem_euclid(self, rhs: FBig<R, B>) -> (IBig, FBig<R, B>)

source§

impl<R: Round, const B: Word> DivRemEuclid for FBig<R, B>

§

type OutputDiv = IBig

§

type OutputRem = FBig<R, B>

source§

fn div_rem_euclid(self, rhs: FBig<R, B>) -> (IBig, FBig<R, B>)

source§

impl<R: Round, const B: Word> EstimatedLog2 for FBig<R, B>

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<R: Round, const B: Word> Euclid for FBig<R, B>

source§

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

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

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

Calculates the least nonnegative remainder of self (mod v). Read more
source§

impl<R: Round, const B: Word> From<IBig> for FBig<R, B>

source§

fn from(n: IBig) -> Self

Converts to this type from the input type.
source§

impl<R: Round, const B: Word> From<UBig> for FBig<R, B>

source§

fn from(n: UBig) -> Self

Converts to this type from the input type.
source§

impl<R: Round, const B: Word> From<i128> for FBig<R, B>

source§

fn from(value: i128) -> FBig<R, B>

Converts to this type from the input type.
source§

impl<R: Round, const B: Word> From<i16> for FBig<R, B>

source§

fn from(value: i16) -> FBig<R, B>

Converts to this type from the input type.
source§

impl<R: Round, const B: Word> From<i32> for FBig<R, B>

source§

fn from(value: i32) -> FBig<R, B>

Converts to this type from the input type.
source§

impl<R: Round, const B: Word> From<i64> for FBig<R, B>

source§

fn from(value: i64) -> FBig<R, B>

Converts to this type from the input type.
source§

impl<R: Round, const B: Word> From<i8> for FBig<R, B>

source§

fn from(value: i8) -> FBig<R, B>

Converts to this type from the input type.
source§

impl<R: Round, const B: Word> From<isize> for FBig<R, B>

source§

fn from(value: isize) -> FBig<R, B>

Converts to this type from the input type.
source§

impl<R: Round, const B: Word> From<u128> for FBig<R, B>

source§

fn from(value: u128) -> FBig<R, B>

Converts to this type from the input type.
source§

impl<R: Round, const B: Word> From<u16> for FBig<R, B>

source§

fn from(value: u16) -> FBig<R, B>

Converts to this type from the input type.
source§

impl<R: Round, const B: Word> From<u32> for FBig<R, B>

source§

fn from(value: u32) -> FBig<R, B>

Converts to this type from the input type.
source§

impl<R: Round, const B: Word> From<u64> for FBig<R, B>

source§

fn from(value: u64) -> FBig<R, B>

Converts to this type from the input type.
source§

impl<R: Round, const B: Word> From<u8> for FBig<R, B>

source§

fn from(value: u8) -> FBig<R, B>

Converts to this type from the input type.
source§

impl<R: Round, const B: Word> From<usize> for FBig<R, B>

source§

fn from(value: usize) -> FBig<R, B>

Converts to this type from the input type.
source§

impl<R: Round, const B: Word> FromPrimitive for FBig<R, B>

source§

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

fn from_f32(f: f32) -> Option<Self>

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

fn from_f64(f: f64) -> Option<Self>

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

impl<'a, R: Round> FromSql<'a> for FBig<R, 10>

source§

fn accepts(ty: &Type) -> bool

Determines if a value of this type can be created from the specified Postgres Type.
source§

fn from_sql( ty: &Type, raw: &'a [u8] ) -> Result<Self, Box<dyn Error + Sync + Send>>

Creates a new value of this type from a buffer of data of the specified Postgres Type in its binary format. Read more
source§

fn from_sql_null(ty: &Type) -> Result<Self, Box<dyn Error + Send + Sync>>

Creates a new value of this type from a NULL SQL value. Read more
source§

fn from_sql_nullable( ty: &Type, raw: Option<&'a [u8]> ) -> Result<Self, Box<dyn Error + Send + Sync>>

A convenience function that delegates to from_sql and from_sql_null depending on the value of raw.
source§

impl<R: Round> FromSql<Numeric, Pg> for FBig<R, 10>

source§

fn from_sql(bytes: PgValue<'_>) -> Result<Self>

See the trait documentation.
source§

fn from_nullable_sql( bytes: Option<<DB as Backend>::RawValue<'_>> ) -> Result<Self, Box<dyn Error + Send + Sync>>

A specialized variant of from_sql for handling null values. Read more
source§

impl<R: Round> FromSql<Numeric, Pg> for FBig<R, 10>

source§

fn from_sql(bytes: Option<&[u8]>) -> Result<Self>

See the trait documentation.
source§

impl<R: Round, const B: Word> FromStr for FBig<R, B>

§

type Err = ParseError

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

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

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

impl<R: Round, const B: Word> Inverse for &FBig<R, B>

§

type Output = FBig<R, B>

source§

fn inv(self) -> Self::Output

source§

impl<R: Round, const B: Word> Inverse for FBig<R, B>

§

type Output = FBig<R, B>

source§

fn inv(self) -> Self::Output

source§

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

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Mul<&'r FBig<R, B>> for &'l UBig

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Mul<&'r FBig<R, B>> for &'l i128

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Mul<&'r FBig<R, B>> for &'l i16

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Mul<&'r FBig<R, B>> for &'l i32

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Mul<&'r FBig<R, B>> for &'l i64

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Mul<&'r FBig<R, B>> for &'l i8

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Mul<&'r FBig<R, B>> for &'l isize

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Mul<&'r FBig<R, B>> for &'l u128

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Mul<&'r FBig<R, B>> for &'l u16

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Mul<&'r FBig<R, B>> for &'l u32

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Mul<&'r FBig<R, B>> for &'l u8

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Mul<&'r FBig<R, B>> for &'l usize

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'r, R: Round, const B: Word> Mul<&'r FBig<R, B>> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'r, R: Round, const B: Word> Mul<&'r FBig<R, B>> for UBig

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'r, R: Round, const B: Word> Mul<&'r FBig<R, B>> for i128

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'r, R: Round, const B: Word> Mul<&'r FBig<R, B>> for i16

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'r, R: Round, const B: Word> Mul<&'r FBig<R, B>> for i32

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'r, R: Round, const B: Word> Mul<&'r FBig<R, B>> for i64

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'r, R: Round, const B: Word> Mul<&'r FBig<R, B>> for i8

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'r, R: Round, const B: Word> Mul<&'r FBig<R, B>> for isize

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'r, R: Round, const B: Word> Mul<&'r FBig<R, B>> for u128

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'r, R: Round, const B: Word> Mul<&'r FBig<R, B>> for u16

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'r, R: Round, const B: Word> Mul<&'r FBig<R, B>> for u32

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'r, R: Round, const B: Word> Mul<&'r FBig<R, B>> for u8

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'r, R: Round, const B: Word> Mul<&'r FBig<R, B>> for usize

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Mul<&'r UBig> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<'r, R: Round, const B: Word> Mul<&'r UBig> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Mul<&'r i128> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<'r, R: Round, const B: Word> Mul<&'r i128> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Mul<&'r i16> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<'r, R: Round, const B: Word> Mul<&'r i16> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Mul<&'r i32> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<'r, R: Round, const B: Word> Mul<&'r i32> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Mul<&'r i64> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<'r, R: Round, const B: Word> Mul<&'r i64> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Mul<&'r i8> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<'r, R: Round, const B: Word> Mul<&'r i8> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Mul<&'r isize> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<'r, R: Round, const B: Word> Mul<&'r isize> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Mul<&'r u128> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<'r, R: Round, const B: Word> Mul<&'r u128> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Mul<&'r u16> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<'r, R: Round, const B: Word> Mul<&'r u16> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Mul<&'r u32> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<'r, R: Round, const B: Word> Mul<&'r u32> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Mul<&'r u8> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<'r, R: Round, const B: Word> Mul<&'r u8> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Mul<&'r usize> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<'r, R: Round, const B: Word> Mul<&'r usize> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl<'l, R: Round, const B: Word> Mul<FBig<R, B>> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, R: Round, const B: Word> Mul<FBig<R, B>> for &'l UBig

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, R: Round, const B: Word> Mul<FBig<R, B>> for &'l i128

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, R: Round, const B: Word> Mul<FBig<R, B>> for &'l i16

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, R: Round, const B: Word> Mul<FBig<R, B>> for &'l i32

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, R: Round, const B: Word> Mul<FBig<R, B>> for &'l i64

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, R: Round, const B: Word> Mul<FBig<R, B>> for &'l i8

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, R: Round, const B: Word> Mul<FBig<R, B>> for &'l isize

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, R: Round, const B: Word> Mul<FBig<R, B>> for &'l u128

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, R: Round, const B: Word> Mul<FBig<R, B>> for &'l u16

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, R: Round, const B: Word> Mul<FBig<R, B>> for &'l u32

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, R: Round, const B: Word> Mul<FBig<R, B>> for &'l u8

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, R: Round, const B: Word> Mul<FBig<R, B>> for &'l usize

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<FBig<R, B>> for Sign

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<FBig<R, B>> for UBig

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<FBig<R, B>> for i128

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<FBig<R, B>> for i16

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<FBig<R, B>> for i32

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<FBig<R, B>> for i64

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<FBig<R, B>> for i8

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<FBig<R, B>> for isize

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<FBig<R, B>> for u128

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<FBig<R, B>> for u16

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<FBig<R, B>> for u32

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<FBig<R, B>> for u8

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<FBig<R, B>> for usize

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: IBig) -> Self::Output

Performs the * operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: IBig) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<Sign> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Sign) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, R: Round, const B: Word> Mul<UBig> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: UBig) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<UBig> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: UBig) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, R: Round, const B: Word> Mul<i128> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: i128) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<i128> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: i128) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, R: Round, const B: Word> Mul<i16> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: i16) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<i16> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: i16) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, R: Round, const B: Word> Mul<i32> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: i32) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<i32> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: i32) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, R: Round, const B: Word> Mul<i64> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: i64) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<i64> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: i64) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, R: Round, const B: Word> Mul<i8> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: i8) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<i8> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: i8) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, R: Round, const B: Word> Mul<isize> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: isize) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<isize> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: isize) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, R: Round, const B: Word> Mul<u128> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: u128) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<u128> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: u128) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, R: Round, const B: Word> Mul<u16> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: u16) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<u16> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: u16) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, R: Round, const B: Word> Mul<u32> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: u32) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<u32> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: u32) -> Self::Output

Performs the * operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: u64) -> Self::Output

Performs the * operation. Read more
source§

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

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: u64) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, R: Round, const B: Word> Mul<u8> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: u8) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<u8> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: u8) -> Self::Output

Performs the * operation. Read more
source§

impl<'l, R: Round, const B: Word> Mul<usize> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: usize) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul<usize> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: usize) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> Mul for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FBig<R, B>) -> Self::Output

Performs the * operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<&FBig<R, B>> for FBig<R, B>

source§

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

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<&IBig> for FBig<R, B>

source§

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

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<&UBig> for FBig<R, B>

source§

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

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<&i128> for FBig<R, B>

source§

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

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<&i16> for FBig<R, B>

source§

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

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<&i32> for FBig<R, B>

source§

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

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<&i64> for FBig<R, B>

source§

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

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<&i8> for FBig<R, B>

source§

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

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<&isize> for FBig<R, B>

source§

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

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<&u128> for FBig<R, B>

source§

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

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<&u16> for FBig<R, B>

source§

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

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<&u32> for FBig<R, B>

source§

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

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<&u64> for FBig<R, B>

source§

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

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<&u8> for FBig<R, B>

source§

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

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<&usize> for FBig<R, B>

source§

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

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<IBig> for FBig<R, B>

source§

fn mul_assign(&mut self, rhs: IBig)

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<Sign> for FBig<R, B>

source§

fn mul_assign(&mut self, rhs: Sign)

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<UBig> for FBig<R, B>

source§

fn mul_assign(&mut self, rhs: UBig)

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<i128> for FBig<R, B>

source§

fn mul_assign(&mut self, rhs: i128)

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<i16> for FBig<R, B>

source§

fn mul_assign(&mut self, rhs: i16)

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<i32> for FBig<R, B>

source§

fn mul_assign(&mut self, rhs: i32)

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<i64> for FBig<R, B>

source§

fn mul_assign(&mut self, rhs: i64)

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<i8> for FBig<R, B>

source§

fn mul_assign(&mut self, rhs: i8)

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<isize> for FBig<R, B>

source§

fn mul_assign(&mut self, rhs: isize)

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<u128> for FBig<R, B>

source§

fn mul_assign(&mut self, rhs: u128)

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<u16> for FBig<R, B>

source§

fn mul_assign(&mut self, rhs: u16)

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<u32> for FBig<R, B>

source§

fn mul_assign(&mut self, rhs: u32)

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<u64> for FBig<R, B>

source§

fn mul_assign(&mut self, rhs: u64)

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<u8> for FBig<R, B>

source§

fn mul_assign(&mut self, rhs: u8)

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign<usize> for FBig<R, B>

source§

fn mul_assign(&mut self, rhs: usize)

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> MulAssign for FBig<R, B>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl<R: Round, const B: Word> Neg for &FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
source§

impl<R: Round, const B: Word> Neg for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
source§

impl<R: Round, const B: Word> Num for FBig<R, B>

§

type FromStrRadixErr = ParseError

source§

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

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

impl<R: Round, const B: Word> NumHash for FBig<R, B>

source§

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

Consistent Hash::hash on different numeric types. Read more
source§

impl<R: Round, const B: Word> NumOrd<FBig<R, B>> for IBig

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: Round, const B: Word> NumOrd<FBig<R, B>> for UBig

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: Round, const B: Word> NumOrd<FBig<R, B>> for f32

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: Round, const B: Word> NumOrd<FBig<R, B>> for f64

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: Round, const B: Word> NumOrd<FBig<R, B>> for i128

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§

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<R: Round, const B: Word> NumOrd<FBig<R, B>> for i16

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§

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<R: Round, const B: Word> NumOrd<FBig<R, B>> for i32

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§

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<R: Round, const B: Word> NumOrd<FBig<R, B>> for i64

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§

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<R: Round, const B: Word> NumOrd<FBig<R, B>> for i8

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§

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<R: Round, const B: Word> NumOrd<FBig<R, B>> for isize

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§

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<R: Round, const B: Word> NumOrd<FBig<R, B>> for u128

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§

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<R: Round, const B: Word> NumOrd<FBig<R, B>> for u16

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§

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<R: Round, const B: Word> NumOrd<FBig<R, B>> for u32

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§

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<R: Round, const B: Word> NumOrd<FBig<R, B>> for u64

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§

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<R: Round, const B: Word> NumOrd<FBig<R, B>> for u8

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§

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<R: Round, const B: Word> NumOrd<FBig<R, B>> for usize

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§

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<R1: Round, R2: Round, const B1: Word, const B2: Word> NumOrd<FBig<R2, B2>> for FBig<R1, B1>

source§

fn num_cmp(&self, other: &FBig<R2, B2>) -> 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<R2, B2>) -> 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: Round, const B: Word> NumOrd<IBig> for FBig<R, 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<R: Round, const B: Word> NumOrd<UBig> for FBig<R, B>

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<R: Round, const B: Word> NumOrd<f32> for FBig<R, B>

source§

fn num_cmp(&self, other: &f32) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
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§

impl<R: Round, const B: Word> NumOrd<f64> for FBig<R, B>

source§

fn num_cmp(&self, other: &f64) -> Ordering

Ord::cmp on different numeric types. It panics if either of the numeric values contains NaN.
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§

impl<R: Round, const B: Word> NumOrd<i128> for FBig<R, B>

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<R: Round, const B: Word> NumOrd<i16> for FBig<R, B>

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<R: Round, const B: Word> NumOrd<i32> for FBig<R, B>

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<R: Round, const B: Word> NumOrd<i64> for FBig<R, B>

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<R: Round, const B: Word> NumOrd<i8> for FBig<R, B>

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<R: Round, const B: Word> NumOrd<isize> for FBig<R, B>

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<R: Round, const B: Word> NumOrd<u128> for FBig<R, B>

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<R: Round, const B: Word> NumOrd<u16> for FBig<R, B>

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<R: Round, const B: Word> NumOrd<u32> for FBig<R, B>

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<R: Round, const B: Word> NumOrd<u64> for FBig<R, B>

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<R: Round, const B: Word> NumOrd<u8> for FBig<R, B>

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<R: Round, const B: Word> NumOrd<usize> for FBig<R, B>

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<R: Round, const B: Word> One for FBig<R, B>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn is_one(&self) -> bool

Returns true if self is equal to the multiplicative identity. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

impl<R: Round, const B: Word> Ord for FBig<R, B>

source§

fn cmp(&self, other: &Self) -> 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<R1: Round, R2: Round, const B: Word> PartialEq<FBig<R2, B>> for FBig<R1, B>

source§

fn eq(&self, other: &FBig<R2, B>) -> 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<R1: Round, R2: Round, const B: Word> PartialOrd<FBig<R2, B>> for FBig<R1, B>

source§

fn partial_cmp(&self, other: &FBig<R2, B>) -> 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<R: Round, const B: Word> Pow<&FBig<R, B>> for &FBig<R, B>

§

type Output = FBig<R, B>

The result after applying the operator.
source§

fn pow(self, rhs: &FBig<R, B>) -> FBig<R, B>

Returns self to the power rhs. Read more
source§

impl<R: Round, const B: Word> Pow<&FBig<R, B>> for FBig<R, B>

§

type Output = FBig<R, B>

The result after applying the operator.
source§

fn pow(self, rhs: &Self) -> Self

Returns self to the power rhs. Read more
source§

impl<R: Round, const B: Word> Pow<IBig> for &FBig<R, B>

§

type Output = FBig<R, B>

The result after applying the operator.
source§

fn pow(self, rhs: IBig) -> FBig<R, B>

Returns self to the power rhs. Read more
source§

impl<R: Round, const B: Word> Pow<IBig> for FBig<R, B>

§

type Output = FBig<R, B>

The result after applying the operator.
source§

fn pow(self, rhs: IBig) -> Self

Returns self to the power rhs. Read more
source§

impl<T, R: Round, const B: Word> Product<T> for FBig<R, B>
where Self: Mul<T, Output = Self>,

source§

fn product<I: Iterator<Item = T>>(iter: I) -> Self

Method which takes an iterator and generates Self from the elements by multiplying the items.
source§

impl<'l, 'r, R: Round, const B: Word> Rem<&'r FBig<R, B>> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: &FBig<R, B>) -> Self::Output

Performs the % operation. Read more
source§

impl<'r, R: Round, const B: Word> Rem<&'r FBig<R, B>> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: &FBig<R, B>) -> Self::Output

Performs the % operation. Read more
source§

impl<'l, R: Round, const B: Word> Rem<FBig<R, B>> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: FBig<R, B>) -> Self::Output

Performs the % operation. Read more
source§

impl<R: Round, const B: Word> Rem for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: FBig<R, B>) -> Self::Output

Performs the % operation. Read more
source§

impl<R: Round, const B: Word> RemAssign<&FBig<R, B>> for FBig<R, B>

source§

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

Performs the %= operation. Read more
source§

impl<R: Round, const B: Word> RemAssign for FBig<R, B>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> RemEuclid<&'r FBig<R, B>> for &'l FBig<R, B>

§

type Output = FBig<R, B>

source§

fn rem_euclid(self, rhs: &FBig<R, B>) -> Self::Output

source§

impl<'r, R: Round, const B: Word> RemEuclid<&'r FBig<R, B>> for FBig<R, B>

§

type Output = FBig<R, B>

source§

fn rem_euclid(self, rhs: &FBig<R, B>) -> Self::Output

source§

impl<'l, R: Round, const B: Word> RemEuclid<FBig<R, B>> for &'l FBig<R, B>

§

type Output = FBig<R, B>

source§

fn rem_euclid(self, rhs: FBig<R, B>) -> Self::Output

source§

impl<R: Round, const B: Word> RemEuclid for FBig<R, B>

§

type Output = FBig<R, B>

source§

fn rem_euclid(self, rhs: FBig<R, B>) -> Self::Output

source§

impl<R: Round, const B: Word> SampleUniform for FBig<R, B>

§

type Sampler = UniformFBig<R, B>

The UniformSampler implementation supporting type X.
source§

impl<R: Round, const B: Word> Serialize for FBig<R, B>

source§

fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error>

Serialize this value into the given Serde serializer. Read more
source§

impl<R: Round, const B: Word> Shl<isize> for FBig<R, B>

§

type Output = FBig<R, B>

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

fn shl(self, rhs: isize) -> Self::Output

Performs the << operation. Read more
source§

impl<R: Round, const B: Word> ShlAssign<isize> for FBig<R, B>

source§

fn shl_assign(&mut self, rhs: isize)

Performs the <<= operation. Read more
source§

impl<R: Round, const B: Word> Shr<isize> for FBig<R, B>

§

type Output = FBig<R, B>

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

fn shr(self, rhs: isize) -> Self::Output

Performs the >> operation. Read more
source§

impl<R: Round, const B: Word> ShrAssign<isize> for FBig<R, B>

source§

fn shr_assign(&mut self, rhs: isize)

Performs the >>= operation. Read more
source§

impl<R: Round, const B: Word> Signed for FBig<R, B>

source§

fn abs(&self) -> Self

Computes the absolute value. Read more
source§

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

The positive difference of two numbers. Read more
source§

fn signum(&self) -> Self

Returns the sign of the number. Read more
source§

fn is_positive(&self) -> bool

Returns true if the number is positive and false if the number is zero or negative.
source§

fn is_negative(&self) -> bool

Returns true if the number is negative and false if the number is zero or positive.
source§

impl<R: Round, const B: Word> Signed for FBig<R, B>

source§

fn sign(&self) -> Sign

source§

fn is_positive(&self) -> bool

source§

fn is_negative(&self) -> bool

source§

impl<R: Round, const B: Word> SquareRoot for FBig<R, B>

§

type Output = FBig<R, B>

source§

fn sqrt(&self) -> Self

source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for &'l IBig

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for &'l UBig

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for &'l i128

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for &'l i16

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for &'l i32

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for &'l i64

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for &'l i8

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for &'l isize

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for &'l u128

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for &'l u16

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for &'l u32

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for &'l u64

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for &'l u8

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for &'l usize

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for IBig

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for UBig

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for i128

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for i16

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for i32

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for i64

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for i8

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for isize

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for u128

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for u16

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for u32

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for u64

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for u8

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r FBig<R, B>> for usize

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r IBig> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &IBig) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r IBig> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &IBig) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r UBig> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &UBig) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r UBig> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &UBig) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r i128> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &i128) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r i128> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &i128) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r i16> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &i16) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r i16> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &i16) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r i32> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &i32) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r i32> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &i32) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r i64> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &i64) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r i64> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &i64) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r i8> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &i8) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r i8> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &i8) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r isize> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &isize) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r isize> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &isize) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r u128> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &u128) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r u128> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &u128) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r u16> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &u16) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r u16> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &u16) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r u32> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &u32) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r u32> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &u32) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r u64> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &u64) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r u64> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &u64) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r u8> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &u8) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r u8> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &u8) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, 'r, R: Round, const B: Word> Sub<&'r usize> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &usize) -> Self::Output

Performs the - operation. Read more
source§

impl<'r, R: Round, const B: Word> Sub<&'r usize> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &usize) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<FBig<R, B>> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<FBig<R, B>> for &'l IBig

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<FBig<R, B>> for &'l UBig

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<FBig<R, B>> for &'l i128

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<FBig<R, B>> for &'l i16

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<FBig<R, B>> for &'l i32

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<FBig<R, B>> for &'l i64

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<FBig<R, B>> for &'l i8

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<FBig<R, B>> for &'l isize

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<FBig<R, B>> for &'l u128

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<FBig<R, B>> for &'l u16

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<FBig<R, B>> for &'l u32

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<FBig<R, B>> for &'l u64

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<FBig<R, B>> for &'l u8

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<FBig<R, B>> for &'l usize

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<FBig<R, B>> for IBig

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<FBig<R, B>> for UBig

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<FBig<R, B>> for i128

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<FBig<R, B>> for i16

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<FBig<R, B>> for i32

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<FBig<R, B>> for i64

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<FBig<R, B>> for i8

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<FBig<R, B>> for isize

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<FBig<R, B>> for u128

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<FBig<R, B>> for u16

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<FBig<R, B>> for u32

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<FBig<R, B>> for u64

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<FBig<R, B>> for u8

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<FBig<R, B>> for usize

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FBig<R, B>) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<IBig> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: IBig) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<IBig> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: IBig) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<UBig> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: UBig) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<UBig> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: UBig) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<i128> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: i128) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<i128> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: i128) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<i16> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: i16) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<i16> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: i16) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<i32> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: i32) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<i32> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: i32) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<i64> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: i64) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<i64> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: i64) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<i8> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: i8) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<i8> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: i8) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<isize> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: isize) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<isize> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: isize) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<u128> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u128) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<u128> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u128) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<u16> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u16) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<u16> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u16) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<u32> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u32) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<u32> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u32) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<u64> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u64) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<u64> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u64) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<u8> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u8) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<u8> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u8) -> Self::Output

Performs the - operation. Read more
source§

impl<'l, R: Round, const B: Word> Sub<usize> for &'l FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: usize) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub<usize> for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: usize) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> Sub for FBig<R, B>

§

type Output = FBig<R, B>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<&FBig<R, B>> for FBig<R, B>

source§

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

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<&IBig> for FBig<R, B>

source§

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

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<&UBig> for FBig<R, B>

source§

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

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<&i128> for FBig<R, B>

source§

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

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<&i16> for FBig<R, B>

source§

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

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<&i32> for FBig<R, B>

source§

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

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<&i64> for FBig<R, B>

source§

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

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<&i8> for FBig<R, B>

source§

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

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<&isize> for FBig<R, B>

source§

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

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<&u128> for FBig<R, B>

source§

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

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<&u16> for FBig<R, B>

source§

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

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<&u32> for FBig<R, B>

source§

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

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<&u64> for FBig<R, B>

source§

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

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<&u8> for FBig<R, B>

source§

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

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<&usize> for FBig<R, B>

source§

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

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<IBig> for FBig<R, B>

source§

fn sub_assign(&mut self, rhs: IBig)

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<UBig> for FBig<R, B>

source§

fn sub_assign(&mut self, rhs: UBig)

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<i128> for FBig<R, B>

source§

fn sub_assign(&mut self, rhs: i128)

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<i16> for FBig<R, B>

source§

fn sub_assign(&mut self, rhs: i16)

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<i32> for FBig<R, B>

source§

fn sub_assign(&mut self, rhs: i32)

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<i64> for FBig<R, B>

source§

fn sub_assign(&mut self, rhs: i64)

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<i8> for FBig<R, B>

source§

fn sub_assign(&mut self, rhs: i8)

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<isize> for FBig<R, B>

source§

fn sub_assign(&mut self, rhs: isize)

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<u128> for FBig<R, B>

source§

fn sub_assign(&mut self, rhs: u128)

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<u16> for FBig<R, B>

source§

fn sub_assign(&mut self, rhs: u16)

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<u32> for FBig<R, B>

source§

fn sub_assign(&mut self, rhs: u32)

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<u64> for FBig<R, B>

source§

fn sub_assign(&mut self, rhs: u64)

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<u8> for FBig<R, B>

source§

fn sub_assign(&mut self, rhs: u8)

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign<usize> for FBig<R, B>

source§

fn sub_assign(&mut self, rhs: usize)

Performs the -= operation. Read more
source§

impl<R: Round, const B: Word> SubAssign for FBig<R, B>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl<T, R: Round, const B: Word> Sum<T> for FBig<R, B>
where Self: Add<T, Output = Self>,

source§

fn sum<I: Iterator<Item = T>>(iter: I) -> Self

Method which takes an iterator and generates Self from the elements by “summing up” the items.
source§

impl<R: Round, const B: Word> ToPrimitive for FBig<R, B>

source§

fn to_i8(&self) -> Option<i8>

Converts the value of self to an i8. If the value cannot be represented by an i8, then None is returned.
source§

fn to_i16(&self) -> Option<i16>

Converts the value of self to an i16. If the value cannot be represented by an i16, then None is returned.
source§

fn to_i32(&self) -> Option<i32>

Converts the value of self to an i32. If the value cannot be represented by an i32, then None is returned.
source§

fn to_i64(&self) -> Option<i64>

Converts the value of self to an i64. If the value cannot be represented by an i64, then None is returned.
source§

fn to_i128(&self) -> Option<i128>

Converts the value of self to an i128. If the value cannot be represented by an i128 (i64 under the default implementation), then None is returned. Read more
source§

fn to_isize(&self) -> Option<isize>

Converts the value of self to an isize. If the value cannot be represented by an isize, then None is returned.
source§

fn to_u8(&self) -> Option<u8>

Converts the value of self to a u8. If the value cannot be represented by a u8, then None is returned.
source§

fn to_u16(&self) -> Option<u16>

Converts the value of self to a u16. If the value cannot be represented by a u16, then None is returned.
source§

fn to_u32(&self) -> Option<u32>

Converts the value of self to a u32. If the value cannot be represented by a u32, then None is returned.
source§

fn to_u64(&self) -> Option<u64>

Converts the value of self to a u64. If the value cannot be represented by a u64, then None is returned.
source§

fn to_u128(&self) -> Option<u128>

Converts the value of self to a u128. If the value cannot be represented by a u128 (u64 under the default implementation), then None is returned. Read more
source§

fn to_usize(&self) -> Option<usize>

Converts the value of self to a usize. If the value cannot be represented by a usize, then None is returned.
source§

fn to_f32(&self) -> Option<f32>

Converts the value of self to an f32. Overflows may map to positive or negative inifinity, otherwise None is returned if the value cannot be represented by an f32.
source§

fn to_f64(&self) -> Option<f64>

Converts the value of self to an f64. Overflows may map to positive or negative inifinity, otherwise None is returned if the value cannot be represented by an f64. Read more
source§

impl<R: Round> ToSql<Numeric, Pg> for FBig<R, 10>

source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Pg>) -> Result

See the trait documentation.
source§

impl<R: Round> ToSql<Numeric, Pg> for FBig<R, 10>

source§

fn to_sql<W: Write>(&self, out: &mut Output<'_, W, Pg>) -> Result

See the trait documentation.
source§

impl<R: Round> ToSql for FBig<R, 10>

source§

fn accepts(ty: &Type) -> bool

Determines if a value of this type can be converted to the specified Postgres Type.
source§

fn to_sql( &self, ty: &Type, out: &mut BytesMut ) -> Result<IsNull, Box<dyn Error + Sync + Send>>

Converts the value of self into the binary format of the specified Postgres Type, appending it to out. Read more
source§

fn to_sql_checked( &self, ty: &Type, out: &mut BytesMut ) -> Result<IsNull, Box<dyn Error + Sync + Send>>

An adaptor method used internally by Rust-Postgres. Read more
source§

fn encode_format(&self, _ty: &Type) -> Format

Specify the encode format
source§

impl<R: Round> TryFrom<FBig<R>> for f32

§

type Error = ConversionError

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

fn try_from(value: FBig<R, 2>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<R: Round> TryFrom<FBig<R>> for f64

§

type Error = ConversionError

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

fn try_from(value: FBig<R, 2>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<R: Round, const B: Word> TryFrom<FBig<R, B>> for IBig

§

type Error = ConversionError

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

fn try_from(value: FBig<R, B>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<R: Round, const B: Word> TryFrom<FBig<R, B>> for UBig

§

type Error = ConversionError

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

fn try_from(value: FBig<R, B>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<R: Round, const B: Word> TryFrom<FBig<R, B>> for i128

§

type Error = ConversionError

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

fn try_from(value: FBig<R, B>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<R: Round, const B: Word> TryFrom<FBig<R, B>> for i16

§

type Error = ConversionError

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

fn try_from(value: FBig<R, B>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<R: Round, const B: Word> TryFrom<FBig<R, B>> for i32

§

type Error = ConversionError

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

fn try_from(value: FBig<R, B>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<R: Round, const B: Word> TryFrom<FBig<R, B>> for i64

§

type Error = ConversionError

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

fn try_from(value: FBig<R, B>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<R: Round, const B: Word> TryFrom<FBig<R, B>> for i8

§

type Error = ConversionError

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

fn try_from(value: FBig<R, B>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<R: Round, const B: Word> TryFrom<FBig<R, B>> for isize

§

type Error = ConversionError

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

fn try_from(value: FBig<R, B>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<R: Round, const B: Word> TryFrom<FBig<R, B>> for u128

§

type Error = ConversionError

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

fn try_from(value: FBig<R, B>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<R: Round, const B: Word> TryFrom<FBig<R, B>> for u16

§

type Error = ConversionError

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

fn try_from(value: FBig<R, B>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<R: Round, const B: Word> TryFrom<FBig<R, B>> for u32

§

type Error = ConversionError

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

fn try_from(value: FBig<R, B>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<R: Round, const B: Word> TryFrom<FBig<R, B>> for u64

§

type Error = ConversionError

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

fn try_from(value: FBig<R, B>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<R: Round, const B: Word> TryFrom<FBig<R, B>> for u8

§

type Error = ConversionError

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

fn try_from(value: FBig<R, B>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<R: Round, const B: Word> TryFrom<FBig<R, B>> for usize

§

type Error = ConversionError

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

fn try_from(value: FBig<R, B>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<R: Round> TryFrom<f32> for FBig<R, 2>

§

type Error = ConversionError

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

fn try_from(f: f32) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<R: Round> TryFrom<f64> for FBig<R, 2>

§

type Error = ConversionError

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

fn try_from(f: f64) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<R: Round, const B: Word> Zero for FBig<R, B>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl<R: Round, const B: Word> Zeroize for FBig<R, B>

source§

fn zeroize(&mut self)

Zero out this object from memory using Rust intrinsics which ensure the zeroization operation is not “optimized away” by the compiler.
source§

impl<R: Round, const B: Word> Eq for FBig<R, B>

Auto Trait Implementations§

§

impl<RoundingMode, const BASE: u64> RefUnwindSafe for FBig<RoundingMode, BASE>
where RoundingMode: RefUnwindSafe,

§

impl<RoundingMode, const BASE: u64> Send for FBig<RoundingMode, BASE>
where RoundingMode: Send,

§

impl<RoundingMode, const BASE: u64> Sync for FBig<RoundingMode, BASE>
where RoundingMode: Sync,

§

impl<RoundingMode, const BASE: u64> Unpin for FBig<RoundingMode, BASE>
where RoundingMode: Unpin,

§

impl<RoundingMode, const BASE: u64> UnwindSafe for FBig<RoundingMode, BASE>
where RoundingMode: UnwindSafe,

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> BorrowToSql for T
where T: ToSql,

source§

fn borrow_to_sql(&self) -> &dyn ToSql

Returns a reference to self as a ToSql trait object.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, ST, DB> FromStaticSqlRow<ST, DB> for T
where DB: Backend, T: FromSql<ST, DB>, ST: SingleValue,

source§

fn build_from_row<'a>( row: &impl Row<'a, DB> ) -> Result<T, Box<dyn Error + Send + Sync>>

See the trait documentation
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> IntoSql for T

source§

fn into_sql<T>(self) -> Self::Expression
where Self: AsExpression<T> + Sized,

Convert self to an expression for Diesel’s query builder. Read more
source§

fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression

Convert &self to an expression for Diesel’s query builder. Read more
source§

impl<T> IntoSql for T

source§

fn into_sql<T>(self) -> Self::Expression

Convert self to an expression for Diesel’s query builder. Read more
source§

fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression

Convert &self to an expression for Diesel’s query builder. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<Borrowed> SampleBorrow<Borrowed> for Borrowed
where Borrowed: SampleUniform,

source§

fn borrow(&self) -> &Borrowed

Immutably borrows from an owned value. See Borrow::borrow
source§

impl<T> ToOwned for T
where T: Clone,

§

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

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

source§

impl<T> FromSqlOwned for T
where T: for<'a> FromSql<'a>,

source§

impl<T> NumAssign for T
where T: Num + NumAssignOps,

source§

impl<T, Rhs> NumAssignOps<Rhs> for T
where T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>,

source§

impl<T> NumAssignRef for T
where T: NumAssign + for<'r> NumAssignOps<&'r T>,

source§

impl<T, Rhs, Output> NumOps<Rhs, Output> for T
where T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>,

source§

impl<T> NumRef for T
where T: Num + for<'r> NumOps<&'r T>,

source§

impl<T, Base> RefNum<Base> for T
where T: NumOps<Base, Base> + for<'r> NumOps<&'r Base, Base>,