pub struct Uint<const LIMBS: usize> { /* private fields */ }
Expand description

Stack-allocated big unsigned integer.

Generic over the given number of LIMBS

Encoding support

This type supports many different types of encodings, either via the Encoding trait or various const fn decoding and encoding functions that can be used with Uint constants.

Optional crate features for encoding (off-by-default):

  • generic-array: enables [ArrayEncoding][crate::ArrayEncoding] trait which can be used to Uint as GenericArray<u8, N> and a [ArrayDecoding][crate::ArrayDecoding] trait which can be used to GenericArray<u8, N> as Uint.
  • rlp: support for Recursive Length Prefix (RLP) encoding.

Implementations§

source§

impl<const LIMBS: usize> Uint<LIMBS>

source

pub const fn adc(&self, rhs: &Uint<LIMBS>, carry: Limb) -> (Uint<LIMBS>, Limb)

Computes a + b + carry, returning the result along with the new carry.

source

pub const fn saturating_add(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>

Perform saturating addition, returning MAX on overflow.

source

pub const fn wrapping_add(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>

Perform wrapping addition, discarding overflow.

source§

impl<const LIMBS: usize> Uint<LIMBS>

source

pub const fn add_mod(&self, rhs: &Uint<LIMBS>, p: &Uint<LIMBS>) -> Uint<LIMBS>

Computes self + rhs mod p in constant time.

Assumes self + rhs as unbounded integer is < 2p.

source

pub const fn add_mod_special(&self, rhs: &Uint<LIMBS>, c: Limb) -> Uint<LIMBS>

Computes self + rhs mod p in constant time for the special modulus p = MAX+1-c where c is small enough to fit in a single Limb.

Assumes self + rhs as unbounded integer is < 2p.

source§

impl<const LIMBS: usize> Uint<LIMBS>

source

pub const fn bitand(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>

Computes bitwise a & b.

source

pub const fn wrapping_and(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>

Perform wrapping bitwise AND.

There’s no way wrapping could ever happen. This function exists so that all operations are accounted for in the wrapping operations

source

pub fn checked_and(&self, rhs: &Uint<LIMBS>) -> CtOption<Uint<LIMBS>>

Perform checked bitwise AND, returning a CtOption which is_some always

source§

impl<const LIMBS: usize> Uint<LIMBS>

source

pub const fn not(&self) -> Uint<LIMBS>

Computes bitwise !a.

source§

impl<const LIMBS: usize> Uint<LIMBS>

source

pub const fn bitor(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>

Computes bitwise a & b.

source

pub const fn wrapping_or(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>

Perform wrapping bitwise OR.

There’s no way wrapping could ever happen. This function exists so that all operations are accounted for in the wrapping operations

source

pub fn checked_or(&self, rhs: &Uint<LIMBS>) -> CtOption<Uint<LIMBS>>

Perform checked bitwise OR, returning a CtOption which is_some always

source§

impl<const LIMBS: usize> Uint<LIMBS>

source

pub const fn bitxor(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>

Computes bitwise a ^ b.

source

pub const fn wrapping_xor(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>

Perform wrapping bitwise `XOR``.

There’s no way wrapping could ever happen. This function exists so that all operations are accounted for in the wrapping operations

source

pub fn checked_xor(&self, rhs: &Uint<LIMBS>) -> CtOption<Uint<LIMBS>>

Perform checked bitwise XOR, returning a CtOption which is_some always

source§

impl<const LIMBS: usize> Uint<LIMBS>

source

pub const fn bit_vartime(&self, index: usize) -> bool

Returns true if the bit at position index is set, false otherwise.

source

pub const fn bits_vartime(&self) -> usize

Calculate the number of bits needed to represent this number.

source

pub const fn leading_zeros(&self) -> usize

Calculate the number of leading zeros in the binary representation of this number.

source

pub const fn trailing_zeros(&self) -> usize

Calculate the number of trailing zeros in the binary representation of this number.

source

pub const fn bits(&self) -> usize

Calculate the number of bits needed to represent this number.

source

pub const fn bit(&self, index: usize) -> CtChoice

Get the value of the bit at position index, as a truthy or falsy CtChoice. Returns the falsy value for indices out of range.

source§

impl<const LIMBS: usize> Uint<LIMBS>

source

pub const fn cmp_vartime(&self, rhs: &Uint<LIMBS>) -> Ordering

Returns the Ordering between self and rhs in variable time.

source§

impl<const LIMBS: usize> Uint<LIMBS>

source

pub const fn ct_div_rem_limb_with_reciprocal( &self, reciprocal: &Reciprocal ) -> (Uint<LIMBS>, Limb)

Computes self / rhs using a pre-made reciprocal, returns the quotient (q) and remainder (r).

source

pub fn div_rem_limb_with_reciprocal( &self, reciprocal: &CtOption<Reciprocal> ) -> CtOption<(Uint<LIMBS>, Limb)>

Computes self / rhs using a pre-made reciprocal, returns the quotient (q) and remainder (r).

source

pub fn div_rem_limb(&self, rhs: NonZero<Limb>) -> (Uint<LIMBS>, Limb)

Computes self / rhs, returns the quotient (q) and remainder (r).

source

pub const fn const_rem(&self, rhs: &Uint<LIMBS>) -> (Uint<LIMBS>, CtChoice)

Computes self % rhs, returns the remainder and and the truthy value for is_some or the falsy value for is_none.

NOTE: Use only if you need to access const fn. Otherwise use Self::rem. This is variable only with respect to rhs.

When used with a fixed rhs, this function is constant-time with respect to self.

source

pub const fn const_rem_wide( lower_upper: (Uint<LIMBS>, Uint<LIMBS>), rhs: &Uint<LIMBS> ) -> (Uint<LIMBS>, CtChoice)

Computes self % rhs, returns the remainder and and the truthy value for is_some or the falsy value for is_none.

This is variable only with respect to rhs.

When used with a fixed rhs, this function is constant-time with respect to self.

source

pub const fn rem2k(&self, k: usize) -> Uint<LIMBS>

Computes self % 2^k. Faster than reduce since its a power of 2. Limited to 2^16-1 since Uint doesn’t support higher.

source

pub fn div_rem(&self, rhs: &NonZero<Uint<LIMBS>>) -> (Uint<LIMBS>, Uint<LIMBS>)

Computes self / rhs, returns the quotient, remainder.

source

pub fn rem(&self, rhs: &NonZero<Uint<LIMBS>>) -> Uint<LIMBS>

Computes self % rhs, returns the remainder.

source

pub const fn wrapping_div(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>

Wrapped division is just normal division i.e. self / rhs There’s no way wrapping could ever happen. This function exists, so that all operations are accounted for in the wrapping operations.

Panics if rhs == 0.

source

pub fn checked_div(&self, rhs: &Uint<LIMBS>) -> CtOption<Uint<LIMBS>>

Perform checked division, returning a CtOption which is_some only if the rhs != 0

source

pub const fn wrapping_rem(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>

Wrapped (modular) remainder calculation is just self % rhs. There’s no way wrapping could ever happen. This function exists, so that all operations are accounted for in the wrapping operations.

Panics if rhs == 0.

source

pub fn checked_rem(&self, rhs: &Uint<LIMBS>) -> CtOption<Uint<LIMBS>>

Perform checked reduction, returning a CtOption which is_some only if the rhs != 0

source§

impl<const LIMBS: usize> Uint<LIMBS>

source

pub const fn from_be_slice(bytes: &[u8]) -> Uint<LIMBS>

Create a new Uint from the provided big endian bytes.

source

pub const fn from_be_hex(hex: &str) -> Uint<LIMBS>

Create a new Uint from the provided big endian hex string.

source

pub const fn from_le_slice(bytes: &[u8]) -> Uint<LIMBS>

Create a new Uint from the provided little endian bytes.

source

pub const fn from_le_hex(hex: &str) -> Uint<LIMBS>

Create a new Uint from the provided little endian hex string.

source§

impl<const LIMBS: usize> Uint<LIMBS>

source

pub const fn from_u8(n: u8) -> Uint<LIMBS>

Create a Uint from a u8 (const-friendly)

source

pub const fn from_u16(n: u16) -> Uint<LIMBS>

Create a Uint from a u16 (const-friendly)

source

pub const fn from_u32(n: u32) -> Uint<LIMBS>

Create a Uint from a u32 (const-friendly)

source

pub const fn from_u64(n: u64) -> Uint<LIMBS>

Create a Uint from a u64 (const-friendly)

source

pub const fn from_u128(n: u128) -> Uint<LIMBS>

Create a Uint from a u128 (const-friendly)

source

pub const fn from_word(n: u32) -> Uint<LIMBS>

Create a Uint from a Word (const-friendly)

source

pub const fn from_wide_word(n: u64) -> Uint<LIMBS>

Create a Uint from a WideWord (const-friendly)

source§

impl<const LIMBS: usize> Uint<LIMBS>

source

pub const fn inv_mod2k_vartime(&self, k: usize) -> Uint<LIMBS>

Computes 1/self mod 2^k. This method is constant-time w.r.t. self but not k.

Conditions: self < 2^k and self must be odd

source

pub const fn inv_mod2k(&self, k: usize) -> Uint<LIMBS>

Computes 1/self mod 2^k.

Conditions: self < 2^k and self must be odd

source

pub const fn inv_odd_mod_bounded( &self, modulus: &Uint<LIMBS>, bits: usize, modulus_bits: usize ) -> (Uint<LIMBS>, CtChoice)

Computes the multiplicative inverse of self mod modulus, where modulus is odd. In other words self^-1 mod modulus. bits and modulus_bits are the bounds on the bit size of self and modulus, respectively (the inversion speed will be proportional to bits + modulus_bits). The second element of the tuple is the truthy value if an inverse exists, otherwise it is a falsy value.

Note: variable time in bits and modulus_bits.

The algorithm is the same as in GMP 6.2.1’s mpn_sec_invert.

source

pub const fn inv_odd_mod( &self, modulus: &Uint<LIMBS> ) -> (Uint<LIMBS>, CtChoice)

Computes the multiplicative inverse of self mod modulus, where modulus is odd. Returns (inverse, CtChoice::TRUE) if an inverse exists, otherwise (undefined, CtChoice::FALSE).

source

pub const fn inv_mod(&self, modulus: &Uint<LIMBS>) -> (Uint<LIMBS>, CtChoice)

Computes the multiplicative inverse of self mod modulus. Returns (inverse, CtChoice::TRUE) if an inverse exists, otherwise (undefined, CtChoice::FALSE).

source§

impl<const LIMBS: usize> Uint<LIMBS>

source

pub fn mul<const HLIMBS: usize>( &self, rhs: &Uint<HLIMBS> ) -> <Uint<HLIMBS> as ConcatMixed<Uint<LIMBS>>>::MixedOutputwhere Uint<HLIMBS>: ConcatMixed<Uint<LIMBS>>,

Multiply self by rhs, returning a concatenated “wide” result.

source

pub const fn mul_wide<const HLIMBS: usize>( &self, rhs: &Uint<HLIMBS> ) -> (Uint<LIMBS>, Uint<HLIMBS>)

Compute “wide” multiplication, with a product twice the size of the input.

Returns a tuple containing the (lo, hi) components of the product.

Ordering note

Releases of crypto-bigint prior to v0.3 used (hi, lo) ordering instead. This has been changed for better consistency with the rest of the APIs in this crate.

For more info see: https://github.com/RustCrypto/crypto-bigint/issues/4

source

pub const fn saturating_mul<const HLIMBS: usize>( &self, rhs: &Uint<HLIMBS> ) -> Uint<LIMBS>

Perform saturating multiplication, returning MAX on overflow.

source

pub const fn wrapping_mul<const H: usize>(&self, rhs: &Uint<H>) -> Uint<LIMBS>

Perform wrapping multiplication, discarding overflow.

source

pub fn square(&self) -> <Uint<LIMBS> as Concat>::Outputwhere Uint<LIMBS>: Concat,

Square self, returning a concatenated “wide” result.

source

pub const fn square_wide(&self) -> (Uint<LIMBS>, Uint<LIMBS>)

Square self, returning a “wide” result in two parts as (lo, hi).

source§

impl<const LIMBS: usize> Uint<LIMBS>

source

pub const fn mul_mod_special(&self, rhs: &Uint<LIMBS>, c: Limb) -> Uint<LIMBS>

Computes self * rhs mod p in constant time for the special modulus p = MAX+1-c where c is small enough to fit in a single Limb. For the modulus reduction, this function implements Algorithm 14.47 from the “Handbook of Applied Cryptography”, by A. Menezes, P. van Oorschot, and S. Vanstone, CRC Press, 1996.

source§

impl<const LIMBS: usize> Uint<LIMBS>

source

pub const fn wrapping_neg(&self) -> Uint<LIMBS>

Perform wrapping negation.

source§

impl<const LIMBS: usize> Uint<LIMBS>

source

pub const fn neg_mod(&self, p: &Uint<LIMBS>) -> Uint<LIMBS>

Computes -a mod p in constant time. Assumes self is in [0, p).

source

pub const fn neg_mod_special(&self, c: Limb) -> Uint<LIMBS>

Computes -a mod p in constant time for the special modulus p = MAX+1-c where c is small enough to fit in a single Limb.

source§

impl<const LIMBS: usize> Uint<LIMBS>

source

pub const fn resize<const T: usize>(&self) -> Uint<T>

Construct a Uint<T> from the unsigned integer value, truncating the upper bits if the value is too large to be represented.

source§

impl<const LIMBS: usize> Uint<LIMBS>

source

pub const fn shl_vartime(&self, n: usize) -> Uint<LIMBS>

Computes self << shift.

NOTE: this operation is variable time with respect to n ONLY.

When used with a fixed n, this function is constant-time with respect to self.

source

pub const fn shl_vartime_wide( lower_upper: (Uint<LIMBS>, Uint<LIMBS>), n: usize ) -> (Uint<LIMBS>, Uint<LIMBS>)

Computes a left shift on a wide input as (lo, hi).

NOTE: this operation is variable time with respect to n ONLY.

When used with a fixed n, this function is constant-time with respect to self.

source

pub const fn shl(&self, shift: usize) -> Uint<LIMBS>

Computes self << n. Returns zero if n >= Self::BITS.

source§

impl<const LIMBS: usize> Uint<LIMBS>

source

pub const fn shr_vartime(&self, shift: usize) -> Uint<LIMBS>

Computes self >> n.

NOTE: this operation is variable time with respect to n ONLY.

When used with a fixed n, this function is constant-time with respect to self.

source

pub const fn shr_vartime_wide( lower_upper: (Uint<LIMBS>, Uint<LIMBS>), n: usize ) -> (Uint<LIMBS>, Uint<LIMBS>)

Computes a right shift on a wide input as (lo, hi).

NOTE: this operation is variable time with respect to n ONLY.

When used with a fixed n, this function is constant-time with respect to self.

source

pub const fn shr(&self, shift: usize) -> Uint<LIMBS>

Computes self << n. Returns zero if n >= Self::BITS.

source§

impl<const LIMBS: usize> Uint<LIMBS>

source

pub const fn sqrt(&self) -> Uint<LIMBS>

👎Deprecated since 0.5.3: This functionality will be moved to sqrt_vartime in a future release.
source

pub const fn sqrt_vartime(&self) -> Uint<LIMBS>

Computes √(self) Uses Brent & Zimmermann, Modern Computer Arithmetic, v0.5.9, Algorithm 1.13

Callers can check if self is a square by squaring the result

source

pub const fn wrapping_sqrt(&self) -> Uint<LIMBS>

👎Deprecated since 0.5.3: This functionality will be moved to wrapping_sqrt_vartime in a future release.
source

pub const fn wrapping_sqrt_vartime(&self) -> Uint<LIMBS>

Wrapped sqrt is just normal √(self) There’s no way wrapping could ever happen. This function exists, so that all operations are accounted for in the wrapping operations.

source

pub fn checked_sqrt(&self) -> CtOption<Uint<LIMBS>>

👎Deprecated since 0.5.3: This functionality will be moved to checked_sqrt_vartime in a future release.
source

pub fn checked_sqrt_vartime(&self) -> CtOption<Uint<LIMBS>>

Perform checked sqrt, returning a CtOption which is_some only if the √(self)² == self

source§

impl<const LIMBS: usize> Uint<LIMBS>

source

pub const fn sbb(&self, rhs: &Uint<LIMBS>, borrow: Limb) -> (Uint<LIMBS>, Limb)

Computes a - (b + borrow), returning the result along with the new borrow.

source

pub const fn saturating_sub(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>

Perform saturating subtraction, returning ZERO on underflow.

source

pub const fn wrapping_sub(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>

Perform wrapping subtraction, discarding underflow and wrapping around the boundary of the type.

source§

impl<const LIMBS: usize> Uint<LIMBS>

source

pub const fn sub_mod(&self, rhs: &Uint<LIMBS>, p: &Uint<LIMBS>) -> Uint<LIMBS>

Computes self - rhs mod p in constant time.

Assumes self - rhs as unbounded signed integer is in [-p, p).

source

pub const fn sub_mod_special(&self, rhs: &Uint<LIMBS>, c: Limb) -> Uint<LIMBS>

Computes self - rhs mod p in constant time for the special modulus p = MAX+1-c where c is small enough to fit in a single Limb.

Assumes self - rhs as unbounded signed integer is in [-p, p).

source§

impl<const LIMBS: usize> Uint<LIMBS>

source

pub const ZERO: Uint<LIMBS> = _

The value 0.

source

pub const ONE: Uint<LIMBS> = _

The value 1.

source

pub const MAX: Uint<LIMBS> = _

Maximum value this Uint can express.

source

pub const BITS: usize = _

Total size of the represented integer in bits.

source

pub const BYTES: usize = _

Total size of the represented integer in bytes.

source

pub const LIMBS: usize = LIMBS

The number of limbs used on this platform.

source

pub const fn new(limbs: [Limb; LIMBS]) -> Uint<LIMBS>

Const-friendly Uint constructor.

source

pub const fn from_words(arr: [u32; LIMBS]) -> Uint<LIMBS>

Create a Uint from an array of Words (i.e. word-sized unsigned integers).

source

pub const fn to_words(self) -> [u32; LIMBS]

Create an array of Words (i.e. word-sized unsigned integers) from a Uint.

source

pub const fn as_words(&self) -> &[u32; LIMBS]

Borrow the inner limbs as an array of Words.

source

pub fn as_words_mut(&mut self) -> &mut [u32; LIMBS]

Borrow the inner limbs as a mutable array of Words.

source

pub const fn as_limbs(&self) -> &[Limb; LIMBS]

Borrow the limbs of this Uint.

source

pub fn as_limbs_mut(&mut self) -> &mut [Limb; LIMBS]

Borrow the limbs of this Uint mutably.

source

pub const fn to_limbs(self) -> [Limb; LIMBS]

Convert this Uint into its inner limbs.

source§

impl Uint<crypto_bigint::::uint::{impl#49}::{constant#0}>

source

pub const fn concat( &self, lo: &Uint<crypto_bigint::::uint::{impl#49}::concat::{constant#0}> ) -> Uint<crypto_bigint::::uint::U64::{constant#0}>

Concatenate the two values, with self as most significant and rhs as the least significant.

source§

impl Uint<crypto_bigint::::uint::U64::{constant#0}>

source

pub const fn split( &self ) -> (Uint<crypto_bigint::::uint::{impl#52}::split::{constant#0}>, Uint<crypto_bigint::::uint::{impl#52}::split::{constant#1}>)

Split this number in half, returning its high and low components respectively.

source§

impl Uint<crypto_bigint::::uint::{impl#54}::{constant#0}>

source

pub const fn concat( &self, lo: &Uint<crypto_bigint::::uint::{impl#54}::concat::{constant#0}> ) -> Uint<crypto_bigint::::uint::U128::{constant#0}>

Concatenate the two values, with self as most significant and rhs as the least significant.

source§

impl Uint<crypto_bigint::::uint::U128::{constant#0}>

source

pub const fn split( &self ) -> (Uint<crypto_bigint::::uint::{impl#57}::split::{constant#0}>, Uint<crypto_bigint::::uint::{impl#57}::split::{constant#1}>)

Split this number in half, returning its high and low components respectively.

source§

impl Uint<crypto_bigint::::uint::{impl#59}::{constant#0}>

source

pub const fn concat( &self, lo: &Uint<crypto_bigint::::uint::{impl#59}::concat::{constant#0}> ) -> Uint<crypto_bigint::::uint::U256::{constant#0}>

Concatenate the two values, with self as most significant and rhs as the least significant.

source§

impl Uint<crypto_bigint::::uint::U256::{constant#0}>

source

pub const fn split( &self ) -> (Uint<crypto_bigint::::uint::{impl#62}::split::{constant#0}>, Uint<crypto_bigint::::uint::{impl#62}::split::{constant#1}>)

Split this number in half, returning its high and low components respectively.

source§

impl Uint<crypto_bigint::::uint::{impl#64}::{constant#0}>

source

pub const fn concat( &self, lo: &Uint<crypto_bigint::::uint::{impl#64}::concat::{constant#0}> ) -> Uint<crypto_bigint::::uint::U384::{constant#0}>

Concatenate the two values, with self as most significant and rhs as the least significant.

source§

impl Uint<crypto_bigint::::uint::U384::{constant#0}>

source

pub const fn split( &self ) -> (Uint<crypto_bigint::::uint::{impl#67}::split::{constant#0}>, Uint<crypto_bigint::::uint::{impl#67}::split::{constant#1}>)

Split this number in half, returning its high and low components respectively.

source§

impl Uint<crypto_bigint::::uint::{impl#69}::{constant#0}>

source

pub const fn concat( &self, lo: &Uint<crypto_bigint::::uint::{impl#69}::concat::{constant#0}> ) -> Uint<crypto_bigint::::uint::U512::{constant#0}>

Concatenate the two values, with self as most significant and rhs as the least significant.

source§

impl Uint<crypto_bigint::::uint::U512::{constant#0}>

source

pub const fn split( &self ) -> (Uint<crypto_bigint::::uint::{impl#72}::split::{constant#0}>, Uint<crypto_bigint::::uint::{impl#72}::split::{constant#1}>)

Split this number in half, returning its high and low components respectively.

source§

impl Uint<crypto_bigint::::uint::{impl#74}::{constant#0}>

source

pub const fn concat( &self, lo: &Uint<crypto_bigint::::uint::{impl#74}::concat::{constant#0}> ) -> Uint<crypto_bigint::::uint::U640::{constant#0}>

Concatenate the two values, with self as most significant and rhs as the least significant.

source§

impl Uint<crypto_bigint::::uint::U640::{constant#0}>

source

pub const fn split( &self ) -> (Uint<crypto_bigint::::uint::{impl#77}::split::{constant#0}>, Uint<crypto_bigint::::uint::{impl#77}::split::{constant#1}>)

Split this number in half, returning its high and low components respectively.

source§

impl Uint<crypto_bigint::::uint::{impl#79}::{constant#0}>

source

pub const fn concat( &self, lo: &Uint<crypto_bigint::::uint::{impl#79}::concat::{constant#0}> ) -> Uint<crypto_bigint::::uint::U768::{constant#0}>

Concatenate the two values, with self as most significant and rhs as the least significant.

source§

impl Uint<crypto_bigint::::uint::U768::{constant#0}>

source

pub const fn split( &self ) -> (Uint<crypto_bigint::::uint::{impl#82}::split::{constant#0}>, Uint<crypto_bigint::::uint::{impl#82}::split::{constant#1}>)

Split this number in half, returning its high and low components respectively.

source§

impl Uint<crypto_bigint::::uint::{impl#84}::{constant#0}>

source

pub const fn concat( &self, lo: &Uint<crypto_bigint::::uint::{impl#84}::concat::{constant#0}> ) -> Uint<crypto_bigint::::uint::U896::{constant#0}>

Concatenate the two values, with self as most significant and rhs as the least significant.

source§

impl Uint<crypto_bigint::::uint::U896::{constant#0}>

source

pub const fn split( &self ) -> (Uint<crypto_bigint::::uint::{impl#87}::split::{constant#0}>, Uint<crypto_bigint::::uint::{impl#87}::split::{constant#1}>)

Split this number in half, returning its high and low components respectively.

source§

impl Uint<crypto_bigint::::uint::{impl#89}::{constant#0}>

source

pub const fn concat( &self, lo: &Uint<crypto_bigint::::uint::{impl#89}::concat::{constant#0}> ) -> Uint<crypto_bigint::::uint::U1024::{constant#0}>

Concatenate the two values, with self as most significant and rhs as the least significant.

source§

impl Uint<crypto_bigint::::uint::U1024::{constant#0}>

source

pub const fn split( &self ) -> (Uint<crypto_bigint::::uint::{impl#92}::split::{constant#0}>, Uint<crypto_bigint::::uint::{impl#92}::split::{constant#1}>)

Split this number in half, returning its high and low components respectively.

source§

impl Uint<crypto_bigint::::uint::{impl#94}::{constant#0}>

source

pub const fn concat( &self, lo: &Uint<crypto_bigint::::uint::{impl#94}::concat::{constant#0}> ) -> Uint<crypto_bigint::::uint::U1280::{constant#0}>

Concatenate the two values, with self as most significant and rhs as the least significant.

source§

impl Uint<crypto_bigint::::uint::U1280::{constant#0}>

source

pub const fn split( &self ) -> (Uint<crypto_bigint::::uint::{impl#97}::split::{constant#0}>, Uint<crypto_bigint::::uint::{impl#97}::split::{constant#1}>)

Split this number in half, returning its high and low components respectively.

source§

impl Uint<crypto_bigint::::uint::{impl#99}::{constant#0}>

source

pub const fn concat( &self, lo: &Uint<crypto_bigint::::uint::{impl#99}::concat::{constant#0}> ) -> Uint<crypto_bigint::::uint::U1536::{constant#0}>

Concatenate the two values, with self as most significant and rhs as the least significant.

source§

impl Uint<crypto_bigint::::uint::U1536::{constant#0}>

source

pub const fn split( &self ) -> (Uint<crypto_bigint::::uint::{impl#102}::split::{constant#0}>, Uint<crypto_bigint::::uint::{impl#102}::split::{constant#1}>)

Split this number in half, returning its high and low components respectively.

source§

impl Uint<crypto_bigint::::uint::{impl#104}::{constant#0}>

source

pub const fn concat( &self, lo: &Uint<crypto_bigint::::uint::{impl#104}::concat::{constant#0}> ) -> Uint<crypto_bigint::::uint::U1792::{constant#0}>

Concatenate the two values, with self as most significant and rhs as the least significant.

source§

impl Uint<crypto_bigint::::uint::U1792::{constant#0}>

source

pub const fn split( &self ) -> (Uint<crypto_bigint::::uint::{impl#107}::split::{constant#0}>, Uint<crypto_bigint::::uint::{impl#107}::split::{constant#1}>)

Split this number in half, returning its high and low components respectively.

source§

impl Uint<crypto_bigint::::uint::{impl#109}::{constant#0}>

source

pub const fn concat( &self, lo: &Uint<crypto_bigint::::uint::{impl#109}::concat::{constant#0}> ) -> Uint<crypto_bigint::::uint::U2048::{constant#0}>

Concatenate the two values, with self as most significant and rhs as the least significant.

source§

impl Uint<crypto_bigint::::uint::U2048::{constant#0}>

source

pub const fn split( &self ) -> (Uint<crypto_bigint::::uint::{impl#112}::split::{constant#0}>, Uint<crypto_bigint::::uint::{impl#112}::split::{constant#1}>)

Split this number in half, returning its high and low components respectively.

source§

impl Uint<crypto_bigint::::uint::{impl#114}::{constant#0}>

source

pub const fn concat( &self, lo: &Uint<crypto_bigint::::uint::{impl#114}::concat::{constant#0}> ) -> Uint<crypto_bigint::::uint::U3072::{constant#0}>

Concatenate the two values, with self as most significant and rhs as the least significant.

source§

impl Uint<crypto_bigint::::uint::U3072::{constant#0}>

source

pub const fn split( &self ) -> (Uint<crypto_bigint::::uint::{impl#117}::split::{constant#0}>, Uint<crypto_bigint::::uint::{impl#117}::split::{constant#1}>)

Split this number in half, returning its high and low components respectively.

source§

impl Uint<crypto_bigint::::uint::{impl#119}::{constant#0}>

source

pub const fn concat( &self, lo: &Uint<crypto_bigint::::uint::{impl#119}::concat::{constant#0}> ) -> Uint<crypto_bigint::::uint::U3584::{constant#0}>

Concatenate the two values, with self as most significant and rhs as the least significant.

source§

impl Uint<crypto_bigint::::uint::U3584::{constant#0}>

source

pub const fn split( &self ) -> (Uint<crypto_bigint::::uint::{impl#122}::split::{constant#0}>, Uint<crypto_bigint::::uint::{impl#122}::split::{constant#1}>)

Split this number in half, returning its high and low components respectively.

source§

impl Uint<crypto_bigint::::uint::{impl#124}::{constant#0}>

source

pub const fn concat( &self, lo: &Uint<crypto_bigint::::uint::{impl#124}::concat::{constant#0}> ) -> Uint<crypto_bigint::::uint::U4096::{constant#0}>

Concatenate the two values, with self as most significant and rhs as the least significant.

source§

impl Uint<crypto_bigint::::uint::U4096::{constant#0}>

source

pub const fn split( &self ) -> (Uint<crypto_bigint::::uint::{impl#127}::split::{constant#0}>, Uint<crypto_bigint::::uint::{impl#127}::split::{constant#1}>)

Split this number in half, returning its high and low components respectively.

source§

impl Uint<crypto_bigint::::uint::{impl#129}::{constant#0}>

source

pub const fn concat( &self, lo: &Uint<crypto_bigint::::uint::{impl#129}::concat::{constant#0}> ) -> Uint<crypto_bigint::::uint::U4224::{constant#0}>

Concatenate the two values, with self as most significant and rhs as the least significant.

source§

impl Uint<crypto_bigint::::uint::U4224::{constant#0}>

source

pub const fn split( &self ) -> (Uint<crypto_bigint::::uint::{impl#132}::split::{constant#0}>, Uint<crypto_bigint::::uint::{impl#132}::split::{constant#1}>)

Split this number in half, returning its high and low components respectively.

source§

impl Uint<crypto_bigint::::uint::{impl#134}::{constant#0}>

source

pub const fn concat( &self, lo: &Uint<crypto_bigint::::uint::{impl#134}::concat::{constant#0}> ) -> Uint<crypto_bigint::::uint::U4352::{constant#0}>

Concatenate the two values, with self as most significant and rhs as the least significant.

source§

impl Uint<crypto_bigint::::uint::U4352::{constant#0}>

source

pub const fn split( &self ) -> (Uint<crypto_bigint::::uint::{impl#137}::split::{constant#0}>, Uint<crypto_bigint::::uint::{impl#137}::split::{constant#1}>)

Split this number in half, returning its high and low components respectively.

source§

impl Uint<crypto_bigint::::uint::{impl#139}::{constant#0}>

source

pub const fn concat( &self, lo: &Uint<crypto_bigint::::uint::{impl#139}::concat::{constant#0}> ) -> Uint<crypto_bigint::::uint::U6144::{constant#0}>

Concatenate the two values, with self as most significant and rhs as the least significant.

source§

impl Uint<crypto_bigint::::uint::U6144::{constant#0}>

source

pub const fn split( &self ) -> (Uint<crypto_bigint::::uint::{impl#142}::split::{constant#0}>, Uint<crypto_bigint::::uint::{impl#142}::split::{constant#1}>)

Split this number in half, returning its high and low components respectively.

source§

impl Uint<crypto_bigint::::uint::{impl#144}::{constant#0}>

source

pub const fn concat( &self, lo: &Uint<crypto_bigint::::uint::{impl#144}::concat::{constant#0}> ) -> Uint<crypto_bigint::::uint::U8192::{constant#0}>

Concatenate the two values, with self as most significant and rhs as the least significant.

source§

impl Uint<crypto_bigint::::uint::U8192::{constant#0}>

source

pub const fn split( &self ) -> (Uint<crypto_bigint::::uint::{impl#147}::split::{constant#0}>, Uint<crypto_bigint::::uint::{impl#147}::split::{constant#1}>)

Split this number in half, returning its high and low components respectively.

source§

impl Uint<crypto_bigint::::uint::{impl#149}::{constant#0}>

source

pub const fn concat( &self, lo: &Uint<crypto_bigint::::uint::{impl#149}::concat::{constant#0}> ) -> Uint<crypto_bigint::::uint::U16384::{constant#0}>

Concatenate the two values, with self as most significant and rhs as the least significant.

source§

impl Uint<crypto_bigint::::uint::U16384::{constant#0}>

source

pub const fn split( &self ) -> (Uint<crypto_bigint::::uint::{impl#152}::split::{constant#0}>, Uint<crypto_bigint::::uint::{impl#152}::split::{constant#1}>)

Split this number in half, returning its high and low components respectively.

Trait Implementations§

source§

impl<const LIMBS: usize> AddMod<Uint<LIMBS>> for Uint<LIMBS>

§

type Output = Uint<LIMBS>

Output type.
source§

fn add_mod(&self, rhs: &Uint<LIMBS>, p: &Uint<LIMBS>) -> Uint<LIMBS>

Compute self + rhs mod p. Read more
source§

impl<const LIMBS: usize> AsMut<[Limb]> for Uint<LIMBS>

source§

fn as_mut(&mut self) -> &mut [Limb]

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<const LIMBS: usize> AsMut<[u32; LIMBS]> for Uint<LIMBS>

source§

fn as_mut(&mut self) -> &mut [u32; LIMBS]

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<const LIMBS: usize> AsRef<[Limb]> for Uint<LIMBS>

source§

fn as_ref(&self) -> &[Limb]

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<const LIMBS: usize> AsRef<[u32; LIMBS]> for Uint<LIMBS>

source§

fn as_ref(&self) -> &[u32; LIMBS]

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<const LIMBS: usize> BitAnd<&Uint<LIMBS>> for &Uint<LIMBS>

§

type Output = Uint<LIMBS>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>

Performs the & operation. Read more
source§

impl<const LIMBS: usize> BitAnd<&Uint<LIMBS>> for Uint<LIMBS>

§

type Output = Uint<LIMBS>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>

Performs the & operation. Read more
source§

impl<const LIMBS: usize> BitAnd<Uint<LIMBS>> for &Uint<LIMBS>

§

type Output = Uint<LIMBS>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Uint<LIMBS>) -> Uint<LIMBS>

Performs the & operation. Read more
source§

impl<const LIMBS: usize> BitAnd<Uint<LIMBS>> for Uint<LIMBS>

§

type Output = Uint<LIMBS>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Uint<LIMBS>) -> Uint<LIMBS>

Performs the & operation. Read more
source§

impl<const LIMBS: usize> BitAndAssign<&Uint<LIMBS>> for Uint<LIMBS>

source§

fn bitand_assign(&mut self, other: &Uint<LIMBS>)

Performs the &= operation. Read more
source§

impl<const LIMBS: usize> BitAndAssign<Uint<LIMBS>> for Uint<LIMBS>

source§

fn bitand_assign(&mut self, other: Uint<LIMBS>)

Performs the &= operation. Read more
source§

impl<const LIMBS: usize> BitOr<&Uint<LIMBS>> for &Uint<LIMBS>

§

type Output = Uint<LIMBS>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>

Performs the | operation. Read more
source§

impl<const LIMBS: usize> BitOr<&Uint<LIMBS>> for Uint<LIMBS>

§

type Output = Uint<LIMBS>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>

Performs the | operation. Read more
source§

impl<const LIMBS: usize> BitOr<Uint<LIMBS>> for &Uint<LIMBS>

§

type Output = Uint<LIMBS>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Uint<LIMBS>) -> Uint<LIMBS>

Performs the | operation. Read more
source§

impl<const LIMBS: usize> BitOr<Uint<LIMBS>> for Uint<LIMBS>

§

type Output = Uint<LIMBS>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Uint<LIMBS>) -> Uint<LIMBS>

Performs the | operation. Read more
source§

impl<const LIMBS: usize> BitOrAssign<&Uint<LIMBS>> for Uint<LIMBS>

source§

fn bitor_assign(&mut self, other: &Uint<LIMBS>)

Performs the |= operation. Read more
source§

impl<const LIMBS: usize> BitOrAssign<Uint<LIMBS>> for Uint<LIMBS>

source§

fn bitor_assign(&mut self, other: Uint<LIMBS>)

Performs the |= operation. Read more
source§

impl<const LIMBS: usize> BitXor<&Uint<LIMBS>> for &Uint<LIMBS>

§

type Output = Uint<LIMBS>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>

Performs the ^ operation. Read more
source§

impl<const LIMBS: usize> BitXor<&Uint<LIMBS>> for Uint<LIMBS>

§

type Output = Uint<LIMBS>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>

Performs the ^ operation. Read more
source§

impl<const LIMBS: usize> BitXor<Uint<LIMBS>> for &Uint<LIMBS>

§

type Output = Uint<LIMBS>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Uint<LIMBS>) -> Uint<LIMBS>

Performs the ^ operation. Read more
source§

impl<const LIMBS: usize> BitXor<Uint<LIMBS>> for Uint<LIMBS>

§

type Output = Uint<LIMBS>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Uint<LIMBS>) -> Uint<LIMBS>

Performs the ^ operation. Read more
source§

impl<const LIMBS: usize> BitXorAssign<&Uint<LIMBS>> for Uint<LIMBS>

source§

fn bitxor_assign(&mut self, other: &Uint<LIMBS>)

Performs the ^= operation. Read more
source§

impl<const LIMBS: usize> BitXorAssign<Uint<LIMBS>> for Uint<LIMBS>

source§

fn bitxor_assign(&mut self, other: Uint<LIMBS>)

Performs the ^= operation. Read more
source§

impl<const LIMBS: usize> Bounded for Uint<LIMBS>

source§

const BITS: usize = Self::BITS

Size of this integer in bits.
source§

const BYTES: usize = Self::BYTES

Size of this integer in bytes.
source§

impl<const LIMBS: usize> CheckedAdd<&Uint<LIMBS>> for Uint<LIMBS>

§

type Output = Uint<LIMBS>

Output type.
source§

fn checked_add(&self, rhs: &Uint<LIMBS>) -> CtOption<Uint<LIMBS>>

Perform checked subtraction, returning a CtOption which is_some only if the operation did not overflow.
source§

impl<const LIMBS: usize, const HLIMBS: usize> CheckedMul<&Uint<HLIMBS>> for Uint<LIMBS>

§

type Output = Uint<LIMBS>

Output type.
source§

fn checked_mul(&self, rhs: &Uint<HLIMBS>) -> CtOption<Uint<LIMBS>>

Perform checked multiplication, returning a CtOption which is_some only if the operation did not overflow.
source§

impl<const LIMBS: usize> CheckedSub<&Uint<LIMBS>> for Uint<LIMBS>

§

type Output = Uint<LIMBS>

Output type.
source§

fn checked_sub(&self, rhs: &Uint<LIMBS>) -> CtOption<Uint<LIMBS>>

Perform checked subtraction, returning a CtOption which is_some only if the operation did not underflow.
source§

impl<const LIMBS: usize> Clone for Uint<LIMBS>

source§

fn clone(&self) -> Uint<LIMBS>

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 ConcatMixed<Uint<crypto_bigint::::uint::{impl#103}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#103}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U1792::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#103}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#103}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#103}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#108}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#108}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U2048::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#108}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#108}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#108}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#113}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#113}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U3072::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#113}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#113}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#113}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#118}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#118}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U3584::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#118}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#118}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#118}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#123}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#123}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U4096::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#123}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#123}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#123}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#128}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#128}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U4224::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#128}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#128}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#128}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#133}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#133}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U4352::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#133}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#133}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#133}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#138}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#138}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U6144::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#138}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#138}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#138}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#143}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#143}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U8192::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#143}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#143}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#143}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#148}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#148}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U16384::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#148}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#148}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#148}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#153}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#153}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U192::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#153}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#153}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#153}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#155}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#155}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U192::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#155}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#155}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#155}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#157}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#157}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U256::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#157}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#157}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#157}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#159}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#159}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U256::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#159}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#159}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#159}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#161}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#161}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U320::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#161}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#161}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#161}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#163}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#163}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U320::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#163}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#163}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#163}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#165}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#165}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U320::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#165}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#165}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#165}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#167}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#167}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U320::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#167}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#167}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#167}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#169}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#169}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U384::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#169}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#169}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#169}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#171}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#171}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U384::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#171}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#171}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#171}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#173}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#173}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U384::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#173}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#173}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#173}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#175}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#175}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U384::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#175}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#175}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#175}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#177}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#177}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U448::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#177}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#177}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#177}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#179}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#179}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U448::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#179}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#179}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#179}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#181}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#181}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U448::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#181}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#181}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#181}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#183}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#183}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U448::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#183}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#183}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#183}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#185}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#185}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U448::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#185}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#185}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#185}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#187}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#187}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U448::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#187}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#187}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#187}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#189}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#189}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U512::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#189}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#189}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#189}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#191}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#191}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U512::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#191}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#191}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#191}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#193}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#193}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U512::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#193}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#193}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#193}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#195}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#195}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U512::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#195}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#195}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#195}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#197}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#197}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U512::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#197}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#197}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#197}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#199}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#199}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U512::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#199}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#199}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#199}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#201}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#201}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U576::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#201}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#201}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#201}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#203}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#203}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U576::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#203}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#203}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#203}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#205}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#205}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U576::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#205}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#205}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#205}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#207}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#207}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U576::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#207}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#207}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#207}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#209}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#209}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U576::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#209}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#209}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#209}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#211}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#211}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U576::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#211}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#211}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#211}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#213}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#213}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U576::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#213}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#213}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#213}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#215}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#215}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U576::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#215}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#215}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#215}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#217}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#217}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#217}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#217}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#217}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#219}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#219}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#219}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#219}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#219}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#221}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#221}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#221}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#221}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#221}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#223}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#223}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#223}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#223}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#223}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#225}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#225}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#225}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#225}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#225}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#227}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#227}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#227}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#227}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#227}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#229}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#229}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#229}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#229}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#229}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#231}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#231}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#231}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#231}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#231}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#233}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#233}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#233}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#233}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#233}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#235}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#235}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#235}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#235}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#235}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#237}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#237}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#237}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#237}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#237}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#239}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#239}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#239}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#239}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#239}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#241}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#241}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#241}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#241}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#241}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#243}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#243}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#243}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#243}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#243}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#245}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#245}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#245}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#245}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#245}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#247}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#247}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#247}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#247}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#247}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#249}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#249}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#249}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#249}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#249}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#251}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#251}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#251}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#251}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#251}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#253}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#253}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#253}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#253}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#253}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#255}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#255}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#255}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#255}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#255}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#257}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#257}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#257}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#257}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#257}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#259}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#259}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#259}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#259}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#259}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#261}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#261}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#261}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#261}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#261}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#263}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#263}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#263}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#263}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#263}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#265}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#265}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#265}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#265}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#265}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#267}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#267}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#267}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#267}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#267}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#269}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#269}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#269}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#269}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#269}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#271}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#271}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#271}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#271}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#271}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#273}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#273}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#273}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#273}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#273}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#275}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#275}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#275}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#275}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#275}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#277}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#277}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#277}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#277}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#277}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#279}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#279}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#279}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#279}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#279}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#281}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#281}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#281}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#281}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#281}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#283}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#283}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#283}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#283}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#283}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#285}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#285}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#285}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#285}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#285}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#287}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#287}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#287}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#287}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#287}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#289}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#289}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#289}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#289}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#289}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#291}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#291}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#291}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#291}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#291}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#293}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#293}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#293}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#293}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#293}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#295}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#295}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#295}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#295}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#295}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#297}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#297}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#297}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#297}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#297}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#299}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#299}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#299}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#299}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#299}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#301}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#301}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#301}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#301}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#301}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#303}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#303}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#303}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#303}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#303}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#305}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#305}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#305}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#305}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#305}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#307}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#307}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#307}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#307}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#307}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#309}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#309}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#309}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#309}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#309}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#311}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#311}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#311}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#311}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#311}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#313}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#313}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#313}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#313}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#313}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#315}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#315}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#315}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#315}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#315}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#317}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#317}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#317}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#317}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#317}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#319}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#319}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#319}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#319}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#319}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#321}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#321}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#321}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#321}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#321}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#323}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#323}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#323}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#323}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#323}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#325}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#325}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#325}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#325}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#325}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#327}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#327}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#327}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#327}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#327}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#329}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#329}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#329}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#329}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#329}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#331}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#331}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#331}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#331}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#331}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#333}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#333}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#333}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#333}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#333}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#335}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#335}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#335}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#335}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#335}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#337}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#337}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#337}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#337}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#337}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#339}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#339}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#339}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#339}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#339}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#341}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#341}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#341}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#341}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#341}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#343}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#343}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#343}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#343}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#343}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#345}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#345}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#345}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#345}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#345}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#347}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#347}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#347}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#347}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#347}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#349}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#349}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#349}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#349}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#349}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#351}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#351}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#351}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#351}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#351}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#353}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#353}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#353}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#353}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#353}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#355}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#355}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#355}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#355}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#355}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#357}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#357}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#357}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#357}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#357}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#359}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#359}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#359}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#359}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#359}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#361}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#361}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#361}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#361}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#361}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#363}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#363}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#363}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#363}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#363}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#365}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#365}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#365}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#365}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#365}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#367}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#367}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#367}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#367}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#367}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#369}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#369}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#369}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#369}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#369}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#371}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#371}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#371}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#371}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#371}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#373}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#373}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#373}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#373}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#373}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#375}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#375}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#375}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#375}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#375}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#48}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#48}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U64::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#48}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#48}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#48}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#53}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#53}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U128::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#53}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#53}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#53}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#58}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#58}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U256::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#58}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#58}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#58}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#63}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#63}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U384::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#63}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#63}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#63}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#68}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#68}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U512::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#68}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#68}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#68}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#73}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#73}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#73}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#73}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#73}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#78}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#78}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#78}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#78}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#78}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#83}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#83}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#83}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#83}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#83}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#88}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#88}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#88}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#88}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#88}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#93}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#93}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U1280::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#93}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#93}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#93}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#98}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#98}::{constant#1}>

§

type MixedOutput = Uint<crypto_bigint::::uint::U1536::{constant#0}>

Concatenated output: combination of Lo and Self.
source§

fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#98}::concat_mixed::{constant#0}> ) -> <Uint<crypto_bigint::::uint::{impl#98}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#98}::{constant#0}>>>::MixedOutput

Concatenate the two values, with self as most significant and lo as the least significant.
source§

impl<const LIMBS: usize> ConditionallySelectable for Uint<LIMBS>

source§

fn conditional_select( a: &Uint<LIMBS>, b: &Uint<LIMBS>, choice: Choice ) -> Uint<LIMBS>

Select a or b according to choice. Read more
source§

fn conditional_assign(&mut self, other: &Self, choice: Choice)

Conditionally assign other to self, according to choice. Read more
source§

fn conditional_swap(a: &mut Self, b: &mut Self, choice: Choice)

Conditionally swap self and other if choice == 1; otherwise, reassign both unto themselves. Read more
source§

impl<const LIMBS: usize> ConstantTimeEq for Uint<LIMBS>

source§

fn ct_eq(&self, other: &Uint<LIMBS>) -> Choice

Determine if two items are equal. Read more
source§

fn ct_ne(&self, other: &Self) -> Choice

Determine if two items are NOT equal. Read more
source§

impl<const LIMBS: usize> ConstantTimeGreater for Uint<LIMBS>

source§

fn ct_gt(&self, other: &Uint<LIMBS>) -> Choice

Determine whether self > other. Read more
source§

impl<const LIMBS: usize> ConstantTimeLess for Uint<LIMBS>

source§

fn ct_lt(&self, other: &Uint<LIMBS>) -> Choice

Determine whether self < other. Read more
source§

impl<const LIMBS: usize> Debug for Uint<LIMBS>

source§

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

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

impl<const LIMBS: usize> Default for Uint<LIMBS>

source§

fn default() -> Uint<LIMBS>

Returns the “default value” for a type. Read more
source§

impl<const LIMBS: usize> Display for Uint<LIMBS>

source§

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

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

impl<const LIMBS: usize> Div<&NonZero<Limb>> for &Uint<LIMBS>

§

type Output = Uint<LIMBS>

The resulting type after applying the / operator.
source§

fn div( self, rhs: &NonZero<Limb> ) -> <&Uint<LIMBS> as Div<&NonZero<Limb>>>::Output

Performs the / operation. Read more
source§

impl<const LIMBS: usize> Div<&NonZero<Limb>> for Uint<LIMBS>

§

type Output = Uint<LIMBS>

The resulting type after applying the / operator.
source§

fn div( self, rhs: &NonZero<Limb> ) -> <Uint<LIMBS> as Div<&NonZero<Limb>>>::Output

Performs the / operation. Read more
source§

impl<const LIMBS: usize> Div<&NonZero<Uint<LIMBS>>> for &Uint<LIMBS>

§

type Output = Uint<LIMBS>

The resulting type after applying the / operator.
source§

fn div( self, rhs: &NonZero<Uint<LIMBS>> ) -> <&Uint<LIMBS> as Div<&NonZero<Uint<LIMBS>>>>::Output

Performs the / operation. Read more
source§

impl<const LIMBS: usize> Div<&NonZero<Uint<LIMBS>>> for Uint<LIMBS>

§

type Output = Uint<LIMBS>

The resulting type after applying the / operator.
source§

fn div( self, rhs: &NonZero<Uint<LIMBS>> ) -> <Uint<LIMBS> as Div<&NonZero<Uint<LIMBS>>>>::Output

Performs the / operation. Read more
source§

impl<const LIMBS: usize> Div<NonZero<Limb>> for &Uint<LIMBS>

§

type Output = Uint<LIMBS>

The resulting type after applying the / operator.
source§

fn div(self, rhs: NonZero<Limb>) -> <&Uint<LIMBS> as Div<NonZero<Limb>>>::Output

Performs the / operation. Read more
source§

impl<const LIMBS: usize> Div<NonZero<Limb>> for Uint<LIMBS>

§

type Output = Uint<LIMBS>

The resulting type after applying the / operator.
source§

fn div(self, rhs: NonZero<Limb>) -> <Uint<LIMBS> as Div<NonZero<Limb>>>::Output

Performs the / operation. Read more
source§

impl<const LIMBS: usize> Div<NonZero<Uint<LIMBS>>> for &Uint<LIMBS>

§

type Output = Uint<LIMBS>

The resulting type after applying the / operator.
source§

fn div( self, rhs: NonZero<Uint<LIMBS>> ) -> <&Uint<LIMBS> as Div<NonZero<Uint<LIMBS>>>>::Output

Performs the / operation. Read more
source§

impl<const LIMBS: usize> Div<NonZero<Uint<LIMBS>>> for Uint<LIMBS>

§

type Output = Uint<LIMBS>

The resulting type after applying the / operator.
source§

fn div( self, rhs: NonZero<Uint<LIMBS>> ) -> <Uint<LIMBS> as Div<NonZero<Uint<LIMBS>>>>::Output

Performs the / operation. Read more
source§

impl<const LIMBS: usize> DivAssign<&NonZero<Limb>> for Uint<LIMBS>

source§

fn div_assign(&mut self, rhs: &NonZero<Limb>)

Performs the /= operation. Read more
source§

impl<const LIMBS: usize> DivAssign<&NonZero<Uint<LIMBS>>> for Uint<LIMBS>

source§

fn div_assign(&mut self, rhs: &NonZero<Uint<LIMBS>>)

Performs the /= operation. Read more
source§

impl<const LIMBS: usize> DivAssign<NonZero<Limb>> for Uint<LIMBS>

source§

fn div_assign(&mut self, rhs: NonZero<Limb>)

Performs the /= operation. Read more
source§

impl<const LIMBS: usize> DivAssign<NonZero<Uint<LIMBS>>> for Uint<LIMBS>

source§

fn div_assign(&mut self, rhs: NonZero<Uint<LIMBS>>)

Performs the /= operation. Read more
source§

impl Encoding for Uint<crypto_bigint::::uint::U1024::{constant#0}>

§

type Repr = [u8; 128]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U1024::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U1024::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U1024::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U1024::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U1024::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U1024::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U1280::{constant#0}>

§

type Repr = [u8; 160]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U1280::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U1280::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U1280::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U1280::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U1280::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U1280::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U128::{constant#0}>

§

type Repr = [u8; 16]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U128::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U128::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U128::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U128::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U128::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U128::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U1536::{constant#0}>

§

type Repr = [u8; 192]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U1536::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U1536::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U1536::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U1536::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U1536::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U1536::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U16384::{constant#0}>

§

type Repr = [u8; 2048]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U16384::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U16384::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U16384::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U16384::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U16384::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U16384::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U1792::{constant#0}>

§

type Repr = [u8; 224]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U1792::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U1792::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U1792::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U1792::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U1792::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U1792::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U192::{constant#0}>

§

type Repr = [u8; 24]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U192::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U192::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U192::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U192::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U192::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U192::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U2048::{constant#0}>

§

type Repr = [u8; 256]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U2048::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U2048::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U2048::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U2048::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U2048::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U2048::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U224::{constant#0}>

§

type Repr = [u8; 28]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U224::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U224::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U224::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U224::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U224::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U224::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U256::{constant#0}>

§

type Repr = [u8; 32]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U256::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U256::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U256::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U256::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U256::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U256::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U3072::{constant#0}>

§

type Repr = [u8; 384]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U3072::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U3072::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U3072::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U3072::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U3072::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U3072::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U320::{constant#0}>

§

type Repr = [u8; 40]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U320::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U320::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U320::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U320::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U320::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U320::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U32768::{constant#0}>

§

type Repr = [u8; 4096]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U32768::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U32768::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U32768::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U32768::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U32768::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U32768::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U3584::{constant#0}>

§

type Repr = [u8; 448]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U3584::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U3584::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U3584::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U3584::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U3584::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U3584::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U384::{constant#0}>

§

type Repr = [u8; 48]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U384::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U384::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U384::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U384::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U384::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U384::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U4096::{constant#0}>

§

type Repr = [u8; 512]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U4096::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U4096::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U4096::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U4096::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U4096::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U4096::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U4224::{constant#0}>

§

type Repr = [u8; 528]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U4224::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U4224::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U4224::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U4224::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U4224::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U4224::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U4352::{constant#0}>

§

type Repr = [u8; 544]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U4352::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U4352::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U4352::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U4352::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U4352::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U4352::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U448::{constant#0}>

§

type Repr = [u8; 56]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U448::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U448::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U448::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U448::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U448::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U448::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U512::{constant#0}>

§

type Repr = [u8; 64]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U512::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U512::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U512::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U512::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U512::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U512::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U544::{constant#0}>

§

type Repr = [u8; 68]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U544::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U544::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U544::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U544::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U544::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U544::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U576::{constant#0}>

§

type Repr = [u8; 72]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U576::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U576::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U576::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U576::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U576::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U576::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U6144::{constant#0}>

§

type Repr = [u8; 768]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U6144::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U6144::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U6144::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U6144::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U6144::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U6144::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U640::{constant#0}>

§

type Repr = [u8; 80]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U640::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U640::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U640::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U640::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U640::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U640::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U64::{constant#0}>

§

type Repr = [u8; 8]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U64::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U64::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U64::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U64::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U64::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U64::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U704::{constant#0}>

§

type Repr = [u8; 88]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U704::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U704::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U704::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U704::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U704::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U704::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U768::{constant#0}>

§

type Repr = [u8; 96]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U768::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U768::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U768::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U768::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U768::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U768::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U8192::{constant#0}>

§

type Repr = [u8; 1024]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U8192::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U8192::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U8192::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U8192::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U8192::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U8192::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U832::{constant#0}>

§

type Repr = [u8; 104]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U832::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U832::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U832::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U832::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U832::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U832::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U896::{constant#0}>

§

type Repr = [u8; 112]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U896::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U896::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U896::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U896::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U896::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U896::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl Encoding for Uint<crypto_bigint::::uint::U960::{constant#0}>

§

type Repr = [u8; 120]

Byte array representation.
source§

fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U960::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U960::{constant#0}>

Decode from big endian bytes.
source§

fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U960::{constant#0}> as Encoding>::Repr ) -> Uint<crypto_bigint::::uint::U960::{constant#0}>

Decode from little endian bytes.
source§

fn to_be_bytes( &self ) -> <Uint<crypto_bigint::::uint::U960::{constant#0}> as Encoding>::Repr

Encode to big endian bytes.
source§

fn to_le_bytes( &self ) -> <Uint<crypto_bigint::::uint::U960::{constant#0}> as Encoding>::Repr

Encode to little endian bytes.
source§

impl<const L: usize, const H: usize, const LIMBS: usize> From<&(Uint<L>, Uint<H>)> for Uint<LIMBS>where Uint<H>: ConcatMixed<Uint<L>, MixedOutput = Uint<LIMBS>>,

source§

fn from(nums: &(Uint<L>, Uint<H>)) -> Uint<LIMBS>

Converts to this type from the input type.
source§

impl<const LIMBS: usize, const LIMBS2: usize> From<&Uint<LIMBS>> for Uint<LIMBS2>

source§

fn from(num: &Uint<LIMBS>) -> Uint<LIMBS2>

Converts to this type from the input type.
source§

impl<const LIMBS: usize> From<[Limb; LIMBS]> for Uint<LIMBS>

source§

fn from(limbs: [Limb; LIMBS]) -> Uint<LIMBS>

Converts to this type from the input type.
source§

impl<const LIMBS: usize> From<[u32; LIMBS]> for Uint<LIMBS>

source§

fn from(arr: [u32; LIMBS]) -> Uint<LIMBS>

Converts to this type from the input type.
source§

impl<const L: usize, const H: usize, const LIMBS: usize> From<(Uint<L>, Uint<H>)> for Uint<LIMBS>where Uint<H>: ConcatMixed<Uint<L>, MixedOutput = Uint<LIMBS>>,

source§

fn from(nums: (Uint<L>, Uint<H>)) -> Uint<LIMBS>

Converts to this type from the input type.
source§

impl<const LIMBS: usize> From<Limb> for Uint<LIMBS>

source§

fn from(limb: Limb) -> Uint<LIMBS>

Converts to this type from the input type.
source§

impl<const LIMBS: usize> From<Uint<LIMBS>> for [Limb; LIMBS]

source§

fn from(n: Uint<LIMBS>) -> [Limb; LIMBS]

Converts to this type from the input type.
source§

impl<const LIMBS: usize> From<Uint<LIMBS>> for [u32; LIMBS]

source§

fn from(n: Uint<LIMBS>) -> [u32; LIMBS]

Converts to this type from the input type.
source§

impl<const LIMBS: usize> From<u128> for Uint<LIMBS>

source§

fn from(n: u128) -> Uint<LIMBS>

Converts to this type from the input type.
source§

impl<const LIMBS: usize> From<u16> for Uint<LIMBS>

source§

fn from(n: u16) -> Uint<LIMBS>

Converts to this type from the input type.
source§

impl<const LIMBS: usize> From<u32> for Uint<LIMBS>

source§

fn from(n: u32) -> Uint<LIMBS>

Converts to this type from the input type.
source§

impl<const LIMBS: usize> From<u64> for Uint<LIMBS>

source§

fn from(n: u64) -> Uint<LIMBS>

Converts to this type from the input type.
source§

impl<const LIMBS: usize> From<u8> for Uint<LIMBS>

source§

fn from(n: u8) -> Uint<LIMBS>

Converts to this type from the input type.
source§

impl<const LIMBS: usize> Hash for Uint<LIMBS>

source§

fn hash<__H>(&self, state: &mut __H)where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<const LIMBS: usize> Integer for Uint<LIMBS>

source§

const ONE: Uint<LIMBS> = Self::ONE

The value 1.
source§

const MAX: Uint<LIMBS> = Self::MAX

Maximum value this integer can express.
source§

const BITS: usize = Self::BITS

Total size of the represented integer in bits.
source§

const BYTES: usize = Self::BYTES

Total size of the represented integer in bytes.
source§

const LIMBS: usize = Self::LIMBS

The number of limbs used on this platform.
source§

fn is_odd(&self) -> Choice

Is this integer value an odd number? Read more
source§

fn is_even(&self) -> Choice

Is this integer value an even number? Read more
source§

impl<const LIMBS: usize> LowerHex for Uint<LIMBS>

source§

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

Formats the value using the given formatter.
source§

impl<const LIMBS: usize, const HLIMBS: usize> Mul<&Uint<HLIMBS>> for &Uint<LIMBS>where Uint<HLIMBS>: ConcatMixed<Uint<LIMBS>>,

§

type Output = <Uint<HLIMBS> as ConcatMixed<Uint<LIMBS>>>::MixedOutput

The resulting type after applying the * operator.
source§

fn mul( self, other: &Uint<HLIMBS> ) -> <&Uint<LIMBS> as Mul<&Uint<HLIMBS>>>::Output

Performs the * operation. Read more
source§

impl<const LIMBS: usize, const HLIMBS: usize> Mul<&Uint<HLIMBS>> for Uint<LIMBS>where Uint<HLIMBS>: ConcatMixed<Uint<LIMBS>>,

§

type Output = <Uint<HLIMBS> as ConcatMixed<Uint<LIMBS>>>::MixedOutput

The resulting type after applying the * operator.
source§

fn mul( self, other: &Uint<HLIMBS> ) -> <Uint<LIMBS> as Mul<&Uint<HLIMBS>>>::Output

Performs the * operation. Read more
source§

impl<const LIMBS: usize, const HLIMBS: usize> Mul<Uint<HLIMBS>> for &Uint<LIMBS>where Uint<HLIMBS>: ConcatMixed<Uint<LIMBS>>,

§

type Output = <Uint<HLIMBS> as ConcatMixed<Uint<LIMBS>>>::MixedOutput

The resulting type after applying the * operator.
source§

fn mul(self, other: Uint<HLIMBS>) -> <&Uint<LIMBS> as Mul<Uint<HLIMBS>>>::Output

Performs the * operation. Read more
source§

impl<const LIMBS: usize, const HLIMBS: usize> Mul<Uint<HLIMBS>> for Uint<LIMBS>where Uint<HLIMBS>: ConcatMixed<Uint<LIMBS>>,

§

type Output = <Uint<HLIMBS> as ConcatMixed<Uint<LIMBS>>>::MixedOutput

The resulting type after applying the * operator.
source§

fn mul(self, other: Uint<HLIMBS>) -> <Uint<LIMBS> as Mul<Uint<HLIMBS>>>::Output

Performs the * operation. Read more
source§

impl<const LIMBS: usize> NegMod for Uint<LIMBS>

§

type Output = Uint<LIMBS>

Output type.
source§

fn neg_mod(&self, p: &Uint<LIMBS>) -> Uint<LIMBS>

Compute -self mod p.
source§

impl<const LIMBS: usize> Not for Uint<LIMBS>

§

type Output = Uint<LIMBS>

The resulting type after applying the ! operator.
source§

fn not(self) -> <Uint<LIMBS> as Not>::Output

Performs the unary ! operation. Read more
source§

impl<const LIMBS: usize> Ord for Uint<LIMBS>

source§

fn cmp(&self, other: &Uint<LIMBS>) -> 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<const LIMBS: usize> PartialEq<Uint<LIMBS>> for Uint<LIMBS>

source§

fn eq(&self, other: &Uint<LIMBS>) -> 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<const LIMBS: usize> PartialOrd<Uint<LIMBS>> for Uint<LIMBS>

source§

fn partial_cmp(&self, other: &Uint<LIMBS>) -> 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<const LIMBS: usize> Random for Uint<LIMBS>

source§

fn random(rng: &mut impl CryptoRngCore) -> Uint<LIMBS>

Generate a cryptographically secure random Uint.

source§

impl<const LIMBS: usize> RandomMod for Uint<LIMBS>

source§

fn random_mod( rng: &mut impl CryptoRngCore, modulus: &NonZero<Uint<LIMBS>> ) -> Uint<LIMBS>

Generate a cryptographically secure random Uint which is less than a given modulus.

This function uses rejection sampling, a method which produces an unbiased distribution of in-range values provided the underlying CSRNG is unbiased, but runs in variable-time.

The variable-time nature of the algorithm should not pose a security issue so long as the underlying random number generator is truly a CSRNG, where previous outputs are unrelated to subsequent outputs and do not reveal information about the RNG’s internal state.

source§

impl<const LIMBS: usize> Rem<&NonZero<Limb>> for &Uint<LIMBS>

§

type Output = Limb

The resulting type after applying the % operator.
source§

fn rem( self, rhs: &NonZero<Limb> ) -> <&Uint<LIMBS> as Rem<&NonZero<Limb>>>::Output

Performs the % operation. Read more
source§

impl<const LIMBS: usize> Rem<&NonZero<Limb>> for Uint<LIMBS>

§

type Output = Limb

The resulting type after applying the % operator.
source§

fn rem( self, rhs: &NonZero<Limb> ) -> <Uint<LIMBS> as Rem<&NonZero<Limb>>>::Output

Performs the % operation. Read more
source§

impl<const LIMBS: usize> Rem<&NonZero<Uint<LIMBS>>> for &Uint<LIMBS>

§

type Output = Uint<LIMBS>

The resulting type after applying the % operator.
source§

fn rem( self, rhs: &NonZero<Uint<LIMBS>> ) -> <&Uint<LIMBS> as Rem<&NonZero<Uint<LIMBS>>>>::Output

Performs the % operation. Read more
source§

impl<const LIMBS: usize> Rem<&NonZero<Uint<LIMBS>>> for Uint<LIMBS>

§

type Output = Uint<LIMBS>

The resulting type after applying the % operator.
source§

fn rem( self, rhs: &NonZero<Uint<LIMBS>> ) -> <Uint<LIMBS> as Rem<&NonZero<Uint<LIMBS>>>>::Output

Performs the % operation. Read more
source§

impl<const LIMBS: usize> Rem<NonZero<Limb>> for &Uint<LIMBS>

§

type Output = Limb

The resulting type after applying the % operator.
source§

fn rem(self, rhs: NonZero<Limb>) -> <&Uint<LIMBS> as Rem<NonZero<Limb>>>::Output

Performs the % operation. Read more
source§

impl<const LIMBS: usize> Rem<NonZero<Limb>> for Uint<LIMBS>

§

type Output = Limb

The resulting type after applying the % operator.
source§

fn rem(self, rhs: NonZero<Limb>) -> <Uint<LIMBS> as Rem<NonZero<Limb>>>::Output

Performs the % operation. Read more
source§

impl<const LIMBS: usize> Rem<NonZero<Uint<LIMBS>>> for &Uint<LIMBS>

§

type Output = Uint<LIMBS>

The resulting type after applying the % operator.
source§

fn rem( self, rhs: NonZero<Uint<LIMBS>> ) -> <&Uint<LIMBS> as Rem<NonZero<Uint<LIMBS>>>>::Output

Performs the % operation. Read more
source§

impl<const LIMBS: usize> Rem<NonZero<Uint<LIMBS>>> for Uint<LIMBS>

§

type Output = Uint<LIMBS>

The resulting type after applying the % operator.
source§

fn rem( self, rhs: NonZero<Uint<LIMBS>> ) -> <Uint<LIMBS> as Rem<NonZero<Uint<LIMBS>>>>::Output

Performs the % operation. Read more
source§

impl<const LIMBS: usize> RemAssign<&NonZero<Limb>> for Uint<LIMBS>

source§

fn rem_assign(&mut self, rhs: &NonZero<Limb>)

Performs the %= operation. Read more
source§

impl<const LIMBS: usize> RemAssign<&NonZero<Uint<LIMBS>>> for Uint<LIMBS>

source§

fn rem_assign(&mut self, rhs: &NonZero<Uint<LIMBS>>)

Performs the %= operation. Read more
source§

impl<const LIMBS: usize> RemAssign<NonZero<Limb>> for Uint<LIMBS>

source§

fn rem_assign(&mut self, rhs: NonZero<Limb>)

Performs the %= operation. Read more
source§

impl<const LIMBS: usize> RemAssign<NonZero<Uint<LIMBS>>> for Uint<LIMBS>

source§

fn rem_assign(&mut self, rhs: NonZero<Uint<LIMBS>>)

Performs the %= operation. Read more
source§

impl<const LIMBS: usize> Shl<usize> for &Uint<LIMBS>

source§

fn shl(self, rhs: usize) -> Uint<LIMBS>

NOTE: this operation is variable time with respect to rhs ONLY.

When used with a fixed rhs, this function is constant-time with respect to self.

§

type Output = Uint<LIMBS>

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

impl<const LIMBS: usize> Shl<usize> for Uint<LIMBS>

source§

fn shl(self, rhs: usize) -> Uint<LIMBS>

NOTE: this operation is variable time with respect to rhs ONLY.

When used with a fixed rhs, this function is constant-time with respect to self.

§

type Output = Uint<LIMBS>

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

impl<const LIMBS: usize> ShlAssign<usize> for Uint<LIMBS>

source§

fn shl_assign(&mut self, rhs: usize)

NOTE: this operation is variable time with respect to rhs ONLY.

When used with a fixed rhs, this function is constant-time with respect to self.

source§

impl<const LIMBS: usize> Shr<usize> for &Uint<LIMBS>

source§

fn shr(self, rhs: usize) -> Uint<LIMBS>

NOTE: this operation is variable time with respect to rhs ONLY.

When used with a fixed rhs, this function is constant-time with respect to self.

§

type Output = Uint<LIMBS>

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

impl<const LIMBS: usize> Shr<usize> for Uint<LIMBS>

source§

fn shr(self, rhs: usize) -> Uint<LIMBS>

NOTE: this operation is variable time with respect to rhs ONLY.

When used with a fixed rhs, this function is constant-time with respect to self.

§

type Output = Uint<LIMBS>

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

impl<const LIMBS: usize> ShrAssign<usize> for Uint<LIMBS>

source§

fn shr_assign(&mut self, rhs: usize)

Performs the >>= operation. Read more
source§

impl Split for Uint<crypto_bigint::::uint::U1024::{constant#0}>

§

type Output = Uint<crypto_bigint::::uint::{impl#91}::Output::{constant#0}>

Split output: high/low components of the value.
source§

fn split(&self) -> (Self::Output, Self::Output)

Split this number in half, returning its high and low components respectively.
source§

impl Split for Uint<crypto_bigint::::uint::U1280::{constant#0}>

§

type Output = Uint<crypto_bigint::::uint::{impl#96}::Output::{constant#0}>

Split output: high/low components of the value.
source§

fn split(&self) -> (Self::Output, Self::Output)

Split this number in half, returning its high and low components respectively.
source§

impl Split for Uint<crypto_bigint::::uint::U128::{constant#0}>

§

type Output = Uint<crypto_bigint::::uint::{impl#56}::Output::{constant#0}>

Split output: high/low components of the value.
source§

fn split(&self) -> (Self::Output, Self::Output)

Split this number in half, returning its high and low components respectively.
source§

impl Split for Uint<crypto_bigint::::uint::U1536::{constant#0}>

§

type Output = Uint<crypto_bigint::::uint::{impl#101}::Output::{constant#0}>

Split output: high/low components of the value.
source§

fn split(&self) -> (Self::Output, Self::Output)

Split this number in half, returning its high and low components respectively.
source§

impl Split for Uint<crypto_bigint::::uint::U16384::{constant#0}>

§

type Output = Uint<crypto_bigint::::uint::{impl#151}::Output::{constant#0}>

Split output: high/low components of the value.
source§

fn split(&self) -> (Self::Output, Self::Output)

Split this number in half, returning its high and low components respectively.
source§

impl Split for Uint<crypto_bigint::::uint::U1792::{constant#0}>

§

type Output = Uint<crypto_bigint::::uint::{impl#106}::Output::{constant#0}>

Split output: high/low components of the value.
source§

fn split(&self) -> (Self::Output, Self::Output)

Split this number in half, returning its high and low components respectively.
source§

impl Split for Uint<crypto_bigint::::uint::U2048::{constant#0}>

§

type Output = Uint<crypto_bigint::::uint::{impl#111}::Output::{constant#0}>

Split output: high/low components of the value.
source§

fn split(&self) -> (Self::Output, Self::Output)

Split this number in half, returning its high and low components respectively.
source§

impl Split for Uint<crypto_bigint::::uint::U256::{constant#0}>

§

type Output = Uint<crypto_bigint::::uint::{impl#61}::Output::{constant#0}>

Split output: high/low components of the value.
source§

fn split(&self) -> (Self::Output, Self::Output)

Split this number in half, returning its high and low components respectively.
source§

impl Split for Uint<crypto_bigint::::uint::U3072::{constant#0}>

§

type Output = Uint<crypto_bigint::::uint::{impl#116}::Output::{constant#0}>

Split output: high/low components of the value.
source§

fn split(&self) -> (Self::Output, Self::Output)

Split this number in half, returning its high and low components respectively.
source§

impl Split for Uint<crypto_bigint::::uint::U3584::{constant#0}>

§

type Output = Uint<crypto_bigint::::uint::{impl#121}::Output::{constant#0}>

Split output: high/low components of the value.
source§

fn split(&self) -> (Self::Output, Self::Output)

Split this number in half, returning its high and low components respectively.
source§

impl Split for Uint<crypto_bigint::::uint::U384::{constant#0}>

§

type Output = Uint<crypto_bigint::::uint::{impl#66}::Output::{constant#0}>

Split output: high/low components of the value.
source§

fn split(&self) -> (Self::Output, Self::Output)

Split this number in half, returning its high and low components respectively.
source§

impl Split for Uint<crypto_bigint::::uint::U4096::{constant#0}>

§

type Output = Uint<crypto_bigint::::uint::{impl#126}::Output::{constant#0}>

Split output: high/low components of the value.
source§

fn split(&self) -> (Self::Output, Self::Output)

Split this number in half, returning its high and low components respectively.
source§

impl Split for Uint<crypto_bigint::::uint::U4224::{constant#0}>

§

type Output = Uint<crypto_bigint::::uint::{impl#131}::Output::{constant#0}>

Split output: high/low components of the value.
source§

fn split(&self) -> (Self::Output, Self::Output)

Split this number in half, returning its high and low components respectively.
source§

impl Split for Uint<crypto_bigint::::uint::U4352::{constant#0}>

§

type Output = Uint<crypto_bigint::::uint::{impl#136}::Output::{constant#0}>

Split output: high/low components of the value.
source§

fn split(&self) -> (Self::Output, Self::Output)

Split this number in half, returning its high and low components respectively.
source§

impl Split for Uint<crypto_bigint::::uint::U512::{constant#0}>

§

type Output = Uint<crypto_bigint::::uint::{impl#71}::Output::{constant#0}>

Split output: high/low components of the value.
source§

fn split(&self) -> (Self::Output, Self::Output)

Split this number in half, returning its high and low components respectively.
source§

impl Split for Uint<crypto_bigint::::uint::U6144::{constant#0}>

§

type Output = Uint<crypto_bigint::::uint::{impl#141}::Output::{constant#0}>

Split output: high/low components of the value.
source§

fn split(&self) -> (Self::Output, Self::Output)

Split this number in half, returning its high and low components respectively.
source§

impl Split for Uint<crypto_bigint::::uint::U640::{constant#0}>

§

type Output = Uint<crypto_bigint::::uint::{impl#76}::Output::{constant#0}>

Split output: high/low components of the value.
source§

fn split(&self) -> (Self::Output, Self::Output)

Split this number in half, returning its high and low components respectively.
source§

impl Split for Uint<crypto_bigint::::uint::U64::{constant#0}>

§

type Output = Uint<crypto_bigint::::uint::{impl#51}::Output::{constant#0}>

Split output: high/low components of the value.
source§

fn split(&self) -> (Self::Output, Self::Output)

Split this number in half, returning its high and low components respectively.
source§

impl Split for Uint<crypto_bigint::::uint::U768::{constant#0}>

§

type Output = Uint<crypto_bigint::::uint::{impl#81}::Output::{constant#0}>

Split output: high/low components of the value.
source§

fn split(&self) -> (Self::Output, Self::Output)

Split this number in half, returning its high and low components respectively.
source§

impl Split for Uint<crypto_bigint::::uint::U8192::{constant#0}>

§

type Output = Uint<crypto_bigint::::uint::{impl#146}::Output::{constant#0}>

Split output: high/low components of the value.
source§

fn split(&self) -> (Self::Output, Self::Output)

Split this number in half, returning its high and low components respectively.
source§

impl Split for Uint<crypto_bigint::::uint::U896::{constant#0}>

§

type Output = Uint<crypto_bigint::::uint::{impl#86}::Output::{constant#0}>

Split output: high/low components of the value.
source§

fn split(&self) -> (Self::Output, Self::Output)

Split this number in half, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#100}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#100}::{constant#1}>> for Uint<crypto_bigint::::uint::U1536::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#100}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#100}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#105}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#105}::{constant#1}>> for Uint<crypto_bigint::::uint::U1792::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#105}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#105}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#110}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#110}::{constant#1}>> for Uint<crypto_bigint::::uint::U2048::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#110}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#110}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#115}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#115}::{constant#1}>> for Uint<crypto_bigint::::uint::U3072::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#115}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#115}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#120}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#120}::{constant#1}>> for Uint<crypto_bigint::::uint::U3584::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#120}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#120}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#125}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#125}::{constant#1}>> for Uint<crypto_bigint::::uint::U4096::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#125}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#125}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#130}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#130}::{constant#1}>> for Uint<crypto_bigint::::uint::U4224::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#130}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#130}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#135}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#135}::{constant#1}>> for Uint<crypto_bigint::::uint::U4352::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#135}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#135}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#140}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#140}::{constant#1}>> for Uint<crypto_bigint::::uint::U6144::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#140}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#140}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#145}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#145}::{constant#1}>> for Uint<crypto_bigint::::uint::U8192::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#145}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#145}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#150}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#150}::{constant#1}>> for Uint<crypto_bigint::::uint::U16384::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#150}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#150}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#154}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#154}::{constant#1}>> for Uint<crypto_bigint::::uint::U192::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#154}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#154}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#156}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#156}::{constant#1}>> for Uint<crypto_bigint::::uint::U192::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#156}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#156}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#158}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#158}::{constant#1}>> for Uint<crypto_bigint::::uint::U256::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#158}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#158}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#160}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#160}::{constant#1}>> for Uint<crypto_bigint::::uint::U256::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#160}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#160}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#162}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#162}::{constant#1}>> for Uint<crypto_bigint::::uint::U320::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#162}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#162}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#164}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#164}::{constant#1}>> for Uint<crypto_bigint::::uint::U320::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#164}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#164}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#166}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#166}::{constant#1}>> for Uint<crypto_bigint::::uint::U320::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#166}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#166}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#168}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#168}::{constant#1}>> for Uint<crypto_bigint::::uint::U320::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#168}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#168}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#170}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#170}::{constant#1}>> for Uint<crypto_bigint::::uint::U384::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#170}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#170}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#172}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#172}::{constant#1}>> for Uint<crypto_bigint::::uint::U384::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#172}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#172}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#174}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#174}::{constant#1}>> for Uint<crypto_bigint::::uint::U384::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#174}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#174}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#176}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#176}::{constant#1}>> for Uint<crypto_bigint::::uint::U384::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#176}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#176}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#178}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#178}::{constant#1}>> for Uint<crypto_bigint::::uint::U448::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#178}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#178}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#180}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#180}::{constant#1}>> for Uint<crypto_bigint::::uint::U448::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#180}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#180}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#182}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#182}::{constant#1}>> for Uint<crypto_bigint::::uint::U448::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#182}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#182}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#184}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#184}::{constant#1}>> for Uint<crypto_bigint::::uint::U448::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#184}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#184}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#186}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#186}::{constant#1}>> for Uint<crypto_bigint::::uint::U448::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#186}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#186}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#188}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#188}::{constant#1}>> for Uint<crypto_bigint::::uint::U448::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#188}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#188}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#190}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#190}::{constant#1}>> for Uint<crypto_bigint::::uint::U512::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#190}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#190}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#192}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#192}::{constant#1}>> for Uint<crypto_bigint::::uint::U512::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#192}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#192}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#194}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#194}::{constant#1}>> for Uint<crypto_bigint::::uint::U512::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#194}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#194}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#196}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#196}::{constant#1}>> for Uint<crypto_bigint::::uint::U512::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#196}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#196}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#198}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#198}::{constant#1}>> for Uint<crypto_bigint::::uint::U512::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#198}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#198}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#200}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#200}::{constant#1}>> for Uint<crypto_bigint::::uint::U512::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#200}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#200}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#202}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#202}::{constant#1}>> for Uint<crypto_bigint::::uint::U576::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#202}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#202}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#204}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#204}::{constant#1}>> for Uint<crypto_bigint::::uint::U576::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#204}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#204}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#206}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#206}::{constant#1}>> for Uint<crypto_bigint::::uint::U576::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#206}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#206}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#208}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#208}::{constant#1}>> for Uint<crypto_bigint::::uint::U576::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#208}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#208}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#210}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#210}::{constant#1}>> for Uint<crypto_bigint::::uint::U576::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#210}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#210}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#212}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#212}::{constant#1}>> for Uint<crypto_bigint::::uint::U576::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#212}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#212}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#214}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#214}::{constant#1}>> for Uint<crypto_bigint::::uint::U576::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#214}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#214}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#216}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#216}::{constant#1}>> for Uint<crypto_bigint::::uint::U576::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#216}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#216}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#218}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#218}::{constant#1}>> for Uint<crypto_bigint::::uint::U640::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#218}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#218}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#220}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#220}::{constant#1}>> for Uint<crypto_bigint::::uint::U640::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#220}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#220}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#222}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#222}::{constant#1}>> for Uint<crypto_bigint::::uint::U640::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#222}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#222}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#224}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#224}::{constant#1}>> for Uint<crypto_bigint::::uint::U640::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#224}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#224}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#226}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#226}::{constant#1}>> for Uint<crypto_bigint::::uint::U640::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#226}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#226}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#228}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#228}::{constant#1}>> for Uint<crypto_bigint::::uint::U640::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#228}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#228}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#230}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#230}::{constant#1}>> for Uint<crypto_bigint::::uint::U640::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#230}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#230}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#232}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#232}::{constant#1}>> for Uint<crypto_bigint::::uint::U640::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#232}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#232}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#234}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#234}::{constant#1}>> for Uint<crypto_bigint::::uint::U704::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#234}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#234}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#236}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#236}::{constant#1}>> for Uint<crypto_bigint::::uint::U704::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#236}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#236}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#238}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#238}::{constant#1}>> for Uint<crypto_bigint::::uint::U704::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#238}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#238}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#240}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#240}::{constant#1}>> for Uint<crypto_bigint::::uint::U704::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#240}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#240}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#242}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#242}::{constant#1}>> for Uint<crypto_bigint::::uint::U704::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#242}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#242}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#244}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#244}::{constant#1}>> for Uint<crypto_bigint::::uint::U704::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#244}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#244}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#246}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#246}::{constant#1}>> for Uint<crypto_bigint::::uint::U704::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#246}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#246}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#248}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#248}::{constant#1}>> for Uint<crypto_bigint::::uint::U704::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#248}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#248}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#250}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#250}::{constant#1}>> for Uint<crypto_bigint::::uint::U704::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#250}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#250}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#252}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#252}::{constant#1}>> for Uint<crypto_bigint::::uint::U704::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#252}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#252}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#254}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#254}::{constant#1}>> for Uint<crypto_bigint::::uint::U768::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#254}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#254}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#256}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#256}::{constant#1}>> for Uint<crypto_bigint::::uint::U768::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#256}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#256}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#258}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#258}::{constant#1}>> for Uint<crypto_bigint::::uint::U768::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#258}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#258}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#260}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#260}::{constant#1}>> for Uint<crypto_bigint::::uint::U768::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#260}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#260}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#262}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#262}::{constant#1}>> for Uint<crypto_bigint::::uint::U768::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#262}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#262}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#264}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#264}::{constant#1}>> for Uint<crypto_bigint::::uint::U768::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#264}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#264}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#266}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#266}::{constant#1}>> for Uint<crypto_bigint::::uint::U768::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#266}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#266}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#268}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#268}::{constant#1}>> for Uint<crypto_bigint::::uint::U768::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#268}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#268}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#270}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#270}::{constant#1}>> for Uint<crypto_bigint::::uint::U768::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#270}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#270}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#272}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#272}::{constant#1}>> for Uint<crypto_bigint::::uint::U768::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#272}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#272}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#274}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#274}::{constant#1}>> for Uint<crypto_bigint::::uint::U832::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#274}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#274}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#276}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#276}::{constant#1}>> for Uint<crypto_bigint::::uint::U832::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#276}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#276}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#278}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#278}::{constant#1}>> for Uint<crypto_bigint::::uint::U832::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#278}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#278}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#280}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#280}::{constant#1}>> for Uint<crypto_bigint::::uint::U832::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#280}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#280}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#282}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#282}::{constant#1}>> for Uint<crypto_bigint::::uint::U832::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#282}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#282}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#284}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#284}::{constant#1}>> for Uint<crypto_bigint::::uint::U832::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#284}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#284}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#286}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#286}::{constant#1}>> for Uint<crypto_bigint::::uint::U832::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#286}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#286}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#288}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#288}::{constant#1}>> for Uint<crypto_bigint::::uint::U832::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#288}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#288}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#290}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#290}::{constant#1}>> for Uint<crypto_bigint::::uint::U832::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#290}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#290}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#292}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#292}::{constant#1}>> for Uint<crypto_bigint::::uint::U832::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#292}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#292}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#294}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#294}::{constant#1}>> for Uint<crypto_bigint::::uint::U832::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#294}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#294}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#296}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#296}::{constant#1}>> for Uint<crypto_bigint::::uint::U832::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#296}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#296}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#298}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#298}::{constant#1}>> for Uint<crypto_bigint::::uint::U896::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#298}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#298}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#300}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#300}::{constant#1}>> for Uint<crypto_bigint::::uint::U896::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#300}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#300}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#302}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#302}::{constant#1}>> for Uint<crypto_bigint::::uint::U896::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#302}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#302}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#304}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#304}::{constant#1}>> for Uint<crypto_bigint::::uint::U896::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#304}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#304}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#306}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#306}::{constant#1}>> for Uint<crypto_bigint::::uint::U896::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#306}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#306}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#308}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#308}::{constant#1}>> for Uint<crypto_bigint::::uint::U896::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#308}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#308}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#310}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#310}::{constant#1}>> for Uint<crypto_bigint::::uint::U896::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#310}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#310}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#312}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#312}::{constant#1}>> for Uint<crypto_bigint::::uint::U896::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#312}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#312}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#314}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#314}::{constant#1}>> for Uint<crypto_bigint::::uint::U896::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#314}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#314}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#316}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#316}::{constant#1}>> for Uint<crypto_bigint::::uint::U896::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#316}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#316}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#318}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#318}::{constant#1}>> for Uint<crypto_bigint::::uint::U896::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#318}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#318}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#320}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#320}::{constant#1}>> for Uint<crypto_bigint::::uint::U896::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#320}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#320}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#322}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#322}::{constant#1}>> for Uint<crypto_bigint::::uint::U960::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#322}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#322}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#324}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#324}::{constant#1}>> for Uint<crypto_bigint::::uint::U960::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#324}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#324}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#326}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#326}::{constant#1}>> for Uint<crypto_bigint::::uint::U960::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#326}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#326}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#328}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#328}::{constant#1}>> for Uint<crypto_bigint::::uint::U960::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#328}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#328}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#330}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#330}::{constant#1}>> for Uint<crypto_bigint::::uint::U960::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#330}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#330}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#332}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#332}::{constant#1}>> for Uint<crypto_bigint::::uint::U960::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#332}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#332}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#334}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#334}::{constant#1}>> for Uint<crypto_bigint::::uint::U960::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#334}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#334}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#336}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#336}::{constant#1}>> for Uint<crypto_bigint::::uint::U960::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#336}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#336}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#338}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#338}::{constant#1}>> for Uint<crypto_bigint::::uint::U960::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#338}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#338}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#340}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#340}::{constant#1}>> for Uint<crypto_bigint::::uint::U960::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#340}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#340}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#342}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#342}::{constant#1}>> for Uint<crypto_bigint::::uint::U960::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#342}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#342}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#344}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#344}::{constant#1}>> for Uint<crypto_bigint::::uint::U960::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#344}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#344}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#346}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#346}::{constant#1}>> for Uint<crypto_bigint::::uint::U960::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#346}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#346}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#348}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#348}::{constant#1}>> for Uint<crypto_bigint::::uint::U960::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#348}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#348}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#350}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#350}::{constant#1}>> for Uint<crypto_bigint::::uint::U1024::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#350}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#350}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#352}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#352}::{constant#1}>> for Uint<crypto_bigint::::uint::U1024::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#352}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#352}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#354}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#354}::{constant#1}>> for Uint<crypto_bigint::::uint::U1024::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#354}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#354}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#356}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#356}::{constant#1}>> for Uint<crypto_bigint::::uint::U1024::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#356}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#356}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#358}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#358}::{constant#1}>> for Uint<crypto_bigint::::uint::U1024::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#358}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#358}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#360}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#360}::{constant#1}>> for Uint<crypto_bigint::::uint::U1024::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#360}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#360}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#362}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#362}::{constant#1}>> for Uint<crypto_bigint::::uint::U1024::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#362}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#362}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#364}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#364}::{constant#1}>> for Uint<crypto_bigint::::uint::U1024::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#364}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#364}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#366}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#366}::{constant#1}>> for Uint<crypto_bigint::::uint::U1024::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#366}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#366}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#368}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#368}::{constant#1}>> for Uint<crypto_bigint::::uint::U1024::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#368}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#368}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#370}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#370}::{constant#1}>> for Uint<crypto_bigint::::uint::U1024::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#370}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#370}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#372}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#372}::{constant#1}>> for Uint<crypto_bigint::::uint::U1024::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#372}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#372}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#374}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#374}::{constant#1}>> for Uint<crypto_bigint::::uint::U1024::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#374}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#374}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#376}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#376}::{constant#1}>> for Uint<crypto_bigint::::uint::U1024::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#376}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#376}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#50}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#50}::{constant#1}>> for Uint<crypto_bigint::::uint::U64::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#50}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#50}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#55}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#55}::{constant#1}>> for Uint<crypto_bigint::::uint::U128::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#55}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#55}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#60}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#60}::{constant#1}>> for Uint<crypto_bigint::::uint::U256::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#60}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#60}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#65}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#65}::{constant#1}>> for Uint<crypto_bigint::::uint::U384::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#65}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#65}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#70}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#70}::{constant#1}>> for Uint<crypto_bigint::::uint::U512::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#70}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#70}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#75}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#75}::{constant#1}>> for Uint<crypto_bigint::::uint::U640::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#75}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#75}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#80}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#80}::{constant#1}>> for Uint<crypto_bigint::::uint::U768::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#80}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#80}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#85}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#85}::{constant#1}>> for Uint<crypto_bigint::::uint::U896::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#85}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#85}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#90}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#90}::{constant#1}>> for Uint<crypto_bigint::::uint::U1024::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#90}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#90}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl SplitMixed<Uint<crypto_bigint::::uint::{impl#95}::{constant#0}>, Uint<crypto_bigint::::uint::{impl#95}::{constant#1}>> for Uint<crypto_bigint::::uint::U1280::{constant#0}>

source§

fn split_mixed( &self ) -> (Uint<crypto_bigint::::uint::{impl#95}::split_mixed::{constant#0}>, Uint<crypto_bigint::::uint::{impl#95}::split_mixed::{constant#1}>)

Split this number into parts, returning its high and low components respectively.
source§

impl<const LIMBS: usize> SubMod<Uint<LIMBS>> for Uint<LIMBS>

§

type Output = Uint<LIMBS>

Output type.
source§

fn sub_mod(&self, rhs: &Uint<LIMBS>, p: &Uint<LIMBS>) -> Uint<LIMBS>

Compute self - rhs mod p. Read more
source§

impl<const LIMBS: usize> UpperHex for Uint<LIMBS>

source§

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

Formats the value using the given formatter.
source§

impl<const LIMBS: usize> Zero for Uint<LIMBS>

source§

const ZERO: Uint<LIMBS> = Self::ZERO

The value 0.
source§

fn is_zero(&self) -> Choice

Determine if this value is equal to zero. Read more
source§

impl<const LIMBS: usize> Copy for Uint<LIMBS>

source§

impl<const LIMBS: usize> Eq for Uint<LIMBS>

Auto Trait Implementations§

§

impl<const LIMBS: usize> RefUnwindSafe for Uint<LIMBS>

§

impl<const LIMBS: usize> Send for Uint<LIMBS>

§

impl<const LIMBS: usize> Sync for Uint<LIMBS>

§

impl<const LIMBS: usize> Unpin for Uint<LIMBS>

§

impl<const LIMBS: usize> UnwindSafe for Uint<LIMBS>

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
§

impl<T> Clear for Twhere T: InitializableFromZeroed + ?Sized,

§

fn clear(&mut self)

Completely overwrites this value.
§

impl<Q, K> Comparable<K> for Qwhere Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
source§

impl<T> Concat for Twhere T: ConcatMixed<T>,

§

type Output = <T as ConcatMixed<T>>::MixedOutput

Concatenated output: twice the width of Self.
source§

fn concat(&self, lo: &Self) -> Self::Output

Concatenate the two halves, with self as most significant and lo as the least significant.
§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> InitializableFromZeroed for Twhere T: Default,

§

unsafe fn initialize(place: *mut T)

Called to initialize a place to a valid value, after it is set to all-bits-zero. Read more
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> Same<T> for T

§

type Output = T

Should always be Self
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> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. 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.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T, U> ZkpInto<T> for Uwhere T: ZkpFrom<U>,

source§

impl<N> NodeTrait for Nwhere N: Copy + Ord + Hash,