[][src]Struct bigint::uint::U256

#[repr(C)]pub struct U256(pub [u64; 4]);

Little-endian large integer type

Methods

impl U256[src]

pub const MAX: U256[src]

pub fn from_dec_str(value: &str) -> Result<Self, FromDecStrErr>[src]

Convert from a decimal string.

pub fn low_u32(&self) -> u32[src]

Conversion to u32

pub fn low_u64(&self) -> u64[src]

Conversion to u64

pub fn as_u32(&self) -> u32[src]

Conversion to u32 with overflow checking

Panics

Panics if the number is larger than 2^32.

pub fn as_u64(&self) -> u64[src]

Conversion to u64 with overflow checking

Panics

Panics if the number is larger than 2^64.

pub fn is_zero(&self) -> bool[src]

Whether this is zero.

pub fn bits(&self) -> usize[src]

Return the least number of bits needed to represent the number

pub fn bit(&self, index: usize) -> bool[src]

Return if specific bit is set.

Panics

Panics if index exceeds the bit width of the number.

pub fn leading_zeros(&self) -> u32[src]

Returns the number of leading zeros in the binary representation of self.

pub fn trailing_zeros(&self) -> u32[src]

Returns the number of leading zeros in the binary representation of self.

pub fn byte(&self, index: usize) -> u8[src]

Return specific byte.

Panics

Panics if index exceeds the byte width of the number.

pub fn to_big_endian(&self, bytes: &mut [u8])[src]

Write to the slice in big-endian format.

pub fn to_little_endian(&self, bytes: &mut [u8])[src]

Write to the slice in little-endian format.

pub fn exp10(n: usize) -> Self[src]

Create 10**n as this type.

Panics

Panics if the result overflows the type.

pub fn zero() -> Self[src]

Zero (additive identity) of this type.

pub fn one() -> Self[src]

One (multiplicative identity) of this type.

pub fn max_value() -> Self[src]

The maximum value which can be inhabited by this type.

pub fn pow(self, expon: Self) -> Self[src]

Fast exponentation by squaring https://en.wikipedia.org/wiki/Exponentiation_by_squaring

Panics

Panics if the result overflows the type.

pub fn overflowing_pow(self, expon: Self) -> (Self, bool)[src]

Fast exponentation by squaring https://en.wikipedia.org/wiki/Exponentiation_by_squaring

pub fn overflowing_add(self, other: U256) -> (U256, bool)[src]

Optimized instructions

pub fn saturating_add(self, other: U256) -> U256[src]

Addition which saturates at the maximum value.

pub fn overflowing_sub(self, other: U256) -> (U256, bool)[src]

Subtraction which underflows and returns a flag if it does.

pub fn saturating_sub(self, other: U256) -> U256[src]

Subtraction which saturates at zero.

pub fn overflowing_mul(self, other: U256) -> (U256, bool)[src]

Multiply with overflow, returning a flag if it does.

pub fn saturating_mul(self, other: U256) -> U256[src]

Multiplication which saturates at the maximum value..

pub fn overflowing_div(self, other: U256) -> (U256, bool)[src]

Division with overflow

pub fn overflowing_rem(self, other: U256) -> (U256, bool)[src]

Modulus with overflow.

pub fn overflowing_neg(self) -> (U256, bool)[src]

Negation with overflow.

pub fn from_big_endian(slice: &[u8]) -> Self[src]

Converts from big endian representation bytes in memory Can also be used as (&slice).into(), as it is default From slice implementation for U256

pub fn from_little_endian(slice: &[u8]) -> Self[src]

Converts from little endian representation bytes in memory

impl U256[src]

pub fn full_mul(self, other: U256) -> U512[src]

Multiplies two 256-bit integers to produce full 512-bit integer No overflow possible

pub fn mod_inverse(self, p: Self) -> Self[src]

Find modular inverse by modulo p

Trait Implementations

impl Add<U256> for U256[src]

type Output = U256

The resulting type after applying the + operator.

impl BitAnd<U256> for U256[src]

type Output = U256

The resulting type after applying the & operator.

impl BitOr<U256> for U256[src]

type Output = U256

The resulting type after applying the | operator.

impl BitXor<U256> for U256[src]

type Output = U256

The resulting type after applying the ^ operator.

impl Clone for U256[src]

impl Copy for U256[src]

impl Debug for U256[src]

impl Default for U256[src]

impl Display for U256[src]

impl Div<U256> for U256[src]

type Output = U256

The resulting type after applying the / operator.

impl Eq for U256[src]

impl<'a> From<&'a [u8; 32]> for U256[src]

impl<'a> From<&'a [u8]> for U256[src]

impl<'a> From<&'a U256> for U512[src]

impl<'a> From<&'a U512> for U256[src]

impl From<[u8; 32]> for U256[src]

impl From<U128> for U256[src]

impl From<U256> for U512[src]

impl From<U256> for U128[src]

impl From<U256> for u64[src]

impl From<U256> for u32[src]

impl From<U256> for [u8; 32][src]

impl From<U512> for U256[src]

impl From<i16> for U256[src]

impl From<i32> for U256[src]

impl From<i64> for U256[src]

impl From<i8> for U256[src]

impl From<isize> for U256[src]

impl From<u16> for U256[src]

impl From<u32> for U256[src]

impl From<u64> for U256[src]

impl From<u8> for U256[src]

impl From<usize> for U256[src]

impl Hash for U256[src]

impl LowerHex for U256[src]

impl Mul<U256> for U256[src]

type Output = U256

The resulting type after applying the * operator.

impl Not for U256[src]

type Output = U256

The resulting type after applying the ! operator.

impl Ord for U256[src]

impl PartialEq<U256> for U256[src]

impl PartialOrd<U256> for U256[src]

impl Rem<U256> for U256[src]

type Output = U256

The resulting type after applying the % operator.

impl Shl<usize> for U256[src]

type Output = U256

The resulting type after applying the << operator.

impl Shr<usize> for U256[src]

type Output = U256

The resulting type after applying the >> operator.

impl StructuralEq for U256[src]

impl StructuralPartialEq for U256[src]

impl Sub<U256> for U256[src]

type Output = U256

The resulting type after applying the - operator.

Auto Trait Implementations

impl Send for U256

impl Sync for U256

impl Unpin for U256

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.