[−][src]Struct sp_arithmetic::biguint::BigUint
Simple wrapper around an infinitely large integer, represented as limbs of Single.
Implementations
impl BigUint[src]
pub fn with_capacity(size: usize) -> Self[src]
Create a new instance with size limbs. This prevents any number with zero limbs to be
created.
The behavior of the type is undefined with zero limbs.
pub fn from_limbs(limbs: &[Single]) -> Self[src]
Raw constructor from custom limbs. If limbs is empty, Zero::zero() implementation is
used.
pub fn len(&self) -> usize[src]
Number of limbs.
pub fn get(&self, index: usize) -> Single[src]
A naive getter for limb at index. Note that the order is lsb -> msb.
Panics
This panics if index is out of range.
pub fn checked_get(&self, index: usize) -> Option<Single>[src]
A naive getter for limb at index. Note that the order is lsb -> msb.
pub fn set(&mut self, index: usize, value: Single)[src]
A naive setter for limb at index. Note that the order is lsb -> msb.
Panics
This panics if index is out of range.
pub fn lsb(&self) -> Single[src]
returns the least significant limb of the number.
Panics
While the constructor of the type prevents this, this can panic if self has no digits.
pub fn msb(&self) -> Single[src]
returns the most significant limb of the number.
Panics
While the constructor of the type prevents this, this can panic if self has no digits.
pub fn lstrip(&mut self)[src]
Strips zeros from the left side (the most significant limbs) of self, if any.
pub fn lpad(&mut self, size: usize)[src]
Zero-pad self from left to reach size limbs. Will not make any difference if self
is already bigger than size limbs.
pub fn add(self, other: &Self) -> Self[src]
Adds self with other. self and other do not have to have any particular size. Given
that the n = max{size(self), size(other)}, it will produce a number with n + 1
limbs.
This function does not strip the output and returns the original allocated n + 1
limbs. The caller may strip the output if desired.
Taken from "The Art of Computer Programming" by D.E. Knuth, vol 2, chapter 4.
pub fn sub(self, other: &Self) -> Result<Self, Self>[src]
Subtracts other from self. self and other do not have to have any particular size.
Given that the n = max{size(self), size(other)}, it will produce a number of size n.
If other is bigger than self, Err(B - borrow) is returned.
Taken from "The Art of Computer Programming" by D.E. Knuth, vol 2, chapter 4.
pub fn mul(self, other: &Self) -> Self[src]
Multiplies n-limb number self with m-limb number other.
The resulting number will always have n + m limbs.
This function does not strip the output and returns the original allocated n + m
limbs. The caller may strip the output if desired.
Taken from "The Art of Computer Programming" by D.E. Knuth, vol 2, chapter 4.
pub fn div_unit(self, other: Single) -> Self[src]
Divides self by a single limb other. This can be used in cases where the original
division cannot work due to the divisor (other) being just one limb.
Invariant: other cannot be zero.
pub fn div(self, other: &Self, rem: bool) -> Option<(Self, Self)>[src]
Divides an n + m limb self by a n limb other. The result is a m + 1 limb
quotient and a n limb remainder, if enabled by passing true in rem argument, both
in the form of an option's Ok.
- requires
otherto be stripped and have no leading zeros. - requires
selfto be stripped and have no leading zeros. - requires
otherto have at least two limbs. - requires
selfto have a greater length compared toother.
All arguments are examined without being stripped for the above conditions. If any of
the above fails, None is returned.`
Taken from "The Art of Computer Programming" by D.E. Knuth, vol 2, chapter 4.
Trait Implementations
impl Add<BigUint> for BigUint[src]
type Output = Self
The resulting type after applying the + operator.
fn add(self, rhs: Self) -> Self::Output[src]
impl Clone for BigUint[src]
impl Debug for BigUint[src]
impl Default for BigUint[src]
impl Eq for BigUint[src]
impl From<u16> for BigUint[src]
impl From<u32> for BigUint[src]
impl From<u64> for BigUint[src]
impl From<u8> for BigUint[src]
impl Mul<BigUint> for BigUint[src]
type Output = Self
The resulting type after applying the * operator.
fn mul(self, rhs: Self) -> Self::Output[src]
impl Ord for BigUint[src]
fn cmp(&self, other: &Self) -> Ordering[src]
#[must_use]fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self[src]
impl PartialEq<BigUint> for BigUint[src]
impl PartialOrd<BigUint> for BigUint[src]
fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl Sub<BigUint> for BigUint[src]
type Output = Self
The resulting type after applying the - operator.
fn sub(self, rhs: Self) -> Self::Output[src]
impl TryFrom<BigUint> for u128[src]
type Error = &'static str
The type returned in the event of a conversion error.
fn try_from(value: BigUint) -> Result<u128, Self::Error>[src]
impl TryFrom<BigUint> for u64[src]
type Error = &'static str
The type returned in the event of a conversion error.
fn try_from(value: BigUint) -> Result<u64, Self::Error>[src]
impl Zero for BigUint[src]
Auto Trait Implementations
impl RefUnwindSafe for BigUint
impl Send for BigUint
impl Sync for BigUint
impl Unpin for BigUint
impl UnwindSafe for BigUint
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> SaturatedConversion for T[src]
fn saturated_from<T>(t: T) -> Self where
Self: UniqueSaturatedFrom<T>, [src]
Self: UniqueSaturatedFrom<T>,
fn saturated_into<T>(self) -> T where
Self: UniqueSaturatedInto<T>, [src]
Self: UniqueSaturatedInto<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T, S> UniqueSaturatedInto<T> for S where
S: TryInto<T>,
T: Bounded, [src]
S: TryInto<T>,
T: Bounded,