num_modular

Struct udouble

Source
pub struct udouble {
    pub hi: umax,
    pub lo: umax,
}
Expand description

A double width integer type based on the largest built-in integer type umax (currently u128), and to support double-width operations on it is the only goal for this type.

Although it can be regarded as u256, it’s not as feature-rich as in other crates since it’s only designed to support this crate and few other crates (will be noted in comments).

Fields§

§hi: umax

Most significant part

§lo: umax

Least significant part

Implementations§

Source§

impl udouble

Source

pub const MAX: Self

Source

pub const fn widening_add(lhs: umax, rhs: umax) -> Self

Source

pub const fn widening_mul(lhs: umax, rhs: umax) -> Self

Calculate multiplication of two umax integers with result represented in double width integer

Source

pub const fn widening_square(x: umax) -> Self

Optimized squaring function for umax integers

Source

pub const fn overflowing_add(&self, rhs: Self) -> (Self, bool)

Source

pub const fn overflowing_mul1(&self, rhs: umax) -> (Self, bool)

Multiplication of double width and single width

Source

pub fn checked_mul1(&self, rhs: umax) -> Option<Self>

Multiplication of double width and single width

Source

pub fn checked_shl(self, rhs: u32) -> Option<Self>

Source

pub fn checked_shr(self, rhs: u32) -> Option<Self>

Source§

impl udouble

Source

pub const fn leading_zeros(self) -> u32

Trait Implementations§

Source§

impl Add<u128> for udouble

Source§

type Output = udouble

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add for udouble

Source§

type Output = udouble

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl AddAssign<u128> for udouble

Source§

fn add_assign(&mut self, rhs: umax)

Performs the += operation. Read more
Source§

impl AddAssign for udouble

Source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
Source§

impl BitAnd for udouble

Source§

type Output = udouble

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

impl BitAndAssign for udouble

Source§

fn bitand_assign(&mut self, rhs: Self)

Performs the &= operation. Read more
Source§

impl BitOr for udouble

Source§

type Output = udouble

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

impl BitOrAssign for udouble

Source§

fn bitor_assign(&mut self, rhs: Self)

Performs the |= operation. Read more
Source§

impl BitXor for udouble

Source§

type Output = udouble

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

impl BitXorAssign for udouble

Source§

fn bitxor_assign(&mut self, rhs: Self)

Performs the ^= operation. Read more
Source§

impl Clone for udouble

Source§

fn clone(&self) -> udouble

Returns a copy of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for udouble

Source§

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

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

impl Div<u128> for udouble

Source§

type Output = udouble

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl From<u128> for udouble

Source§

fn from(v: umax) -> Self

Converts to this type from the input type.
Source§

impl Mul<u128> for udouble

Source§

type Output = udouble

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: umax) -> Self::Output

Performs the * operation. Read more
Source§

impl Not for udouble

Source§

type Output = udouble

The resulting type after applying the ! operator.
Source§

fn not(self) -> Self::Output

Performs the unary ! operation. Read more
Source§

impl Ord for udouble

Source§

fn cmp(&self, other: &udouble) -> 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,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for udouble

Source§

fn eq(&self, other: &udouble) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for udouble

Source§

fn partial_cmp(&self, other: &udouble) -> 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

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

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

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Rem<u128> for udouble

Source§

type Output = u128

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: umax) -> Self::Output

Performs the % operation. Read more
Source§

impl Shl<u16> for udouble

Source§

type Output = udouble

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<u32> for udouble

Source§

type Output = udouble

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl Shl<u8> for udouble

Source§

type Output = udouble

The resulting type after applying the << operator.
Source§

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

Performs the << operation. Read more
Source§

impl ShlAssign<u16> for udouble

Source§

fn shl_assign(&mut self, rhs: u16)

Performs the <<= operation. Read more
Source§

impl ShlAssign<u32> for udouble

Source§

fn shl_assign(&mut self, rhs: u32)

Performs the <<= operation. Read more
Source§

impl ShlAssign<u8> for udouble

Source§

fn shl_assign(&mut self, rhs: u8)

Performs the <<= operation. Read more
Source§

impl Shr<u16> for udouble

Source§

type Output = udouble

The resulting type after applying the >> operator.
Source§

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

Performs the >> operation. Read more
Source§

impl Shr<u32> for udouble

Source§

type Output = udouble

The resulting type after applying the >> operator.
Source§

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

Performs the >> operation. Read more
Source§

impl Shr<u8> for udouble

Source§

type Output = udouble

The resulting type after applying the >> operator.
Source§

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

Performs the >> operation. Read more
Source§

impl ShrAssign<u16> for udouble

Source§

fn shr_assign(&mut self, rhs: u16)

Performs the >>= operation. Read more
Source§

impl ShrAssign<u32> for udouble

Source§

fn shr_assign(&mut self, rhs: u32)

Performs the >>= operation. Read more
Source§

impl ShrAssign<u8> for udouble

Source§

fn shr_assign(&mut self, rhs: u8)

Performs the >>= operation. Read more
Source§

impl Sub<u128> for udouble

Source§

type Output = udouble

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: umax) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub for udouble

Source§

type Output = udouble

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl SubAssign<u128> for udouble

Source§

fn sub_assign(&mut self, rhs: umax)

Performs the -= operation. Read more
Source§

impl SubAssign for udouble

Source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
Source§

impl Copy for udouble

Source§

impl Eq for udouble

Source§

impl StructuralPartialEq for udouble

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

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

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.