[][src]Struct rcmath::big_num::BigNum

pub struct BigNum { /* fields omitted */ }

Methods

impl BigNum[src]

pub fn parse(_i: String) -> Self[src]

parse string to big number

pub fn u_new(nums: Vec<usize>) -> Self[src]

pub fn i_new(nums: Vec<usize>, sign: bool) -> Self[src]

pub fn new_empty() -> Self[src]

pub fn new_one() -> Self[src]

pub fn new_max() -> Self[src]

pub fn new_single_max() -> Self[src]

pub fn new_min() -> Self[src]

pub fn range(&self) -> Range<BigNum>[src]

Trait Implementations

impl From<u32> for BigNum[src]

impl From<u64> for BigNum[src]

impl From<u8> for BigNum[src]

impl From<bool> for BigNum[src]

impl PartialEq<BigNum> for BigNum[src]

impl Clone for BigNum[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for BigNum[src]

impl PartialOrd<BigNum> for BigNum[src]

#[must_use] fn lt(&self, other: &Rhs) -> bool1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use] fn le(&self, other: &Rhs) -> bool1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use] fn gt(&self, other: &Rhs) -> bool1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use] fn ge(&self, other: &Rhs) -> bool1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Eq for BigNum[src]

impl Ord for BigNum[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl Display for BigNum[src]

impl Debug for BigNum[src]

impl<'_> Add<&'_ BigNum> for &'_ BigNum[src]

type Output = BigNum

The resulting type after applying the + operator.

impl Add<BigNum> for BigNum[src]

type Output = BigNum

The resulting type after applying the + operator.

impl Sub<BigNum> for BigNum[src]

type Output = BigNum

The resulting type after applying the - operator.

impl<'_> Sub<&'_ BigNum> for &'_ BigNum[src]

type Output = BigNum

The resulting type after applying the - operator.

impl Mul<BigNum> for BigNum[src]

type Output = Self

The resulting type after applying the * operator.

impl<'_> Mul<&'_ BigNum> for &'_ BigNum[src]

type Output = BigNum

The resulting type after applying the * operator.

impl Div<BigNum> for BigNum[src]

type Output = Self

The resulting type after applying the / operator.

impl<'_> Div<&'_ BigNum> for &'_ BigNum[src]

type Output = BigNum

The resulting type after applying the / operator.

impl Rem<BigNum> for BigNum[src]

type Output = Self

The resulting type after applying the % operator.

impl<'_> Rem<&'_ BigNum> for &'_ BigNum[src]

type Output = BigNum

The resulting type after applying the % operator.

impl Step for BigNum[src]

fn sub_usize(&self, n: usize) -> Option<Self>[src]

🔬 This is a nightly-only experimental API. (step_trait)

likely to be replaced by finer-grained traits

Subtracts a usize, returning None on underflow.

Auto Trait Implementations

impl Unpin for BigNum

impl Sync for BigNum

impl Send for BigNum

impl RefUnwindSafe for BigNum

impl UnwindSafe for BigNum

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]