Struct num_modular::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

§

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<udouble> for udouble

§

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<udouble> for udouble

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl BitAnd<udouble> for udouble

§

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<udouble> for udouble

source§

fn bitand_assign(&mut self, rhs: Self)

Performs the &= operation. Read more
source§

impl BitOr<udouble> for udouble

§

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<udouble> for udouble

source§

fn bitor_assign(&mut self, rhs: Self)

Performs the |= operation. Read more
source§

impl BitXor<udouble> for udouble

§

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<udouble> 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

§

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

§

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

§

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) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

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

impl PartialEq<udouble> for udouble

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd<udouble> 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

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 Rem<u128> for udouble

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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<udouble> for udouble

§

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<udouble> 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 StructuralEq for udouble

source§

impl StructuralPartialEq for udouble

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere 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 Twhere 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, U> TryFrom<U> for Twhere 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 Twhere 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.