aead::consts

Type Alias N278

Source
pub type N278 = NInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B0>>;

Aliased Type§

struct N278 { /* private fields */ }

Implementations

Source§

impl<U> NInt<U>
where U: Unsigned + NonZero,

Source

pub fn new() -> NInt<U>

Instantiates a singleton representing this strictly negative integer.

Trait Implementations

Source§

impl<U> Abs for NInt<U>
where U: Unsigned + NonZero,

Source§

type Output = PInt<U>

The absolute value.
Source§

impl<Ul, Ur> Add<NInt<Ur>> for NInt<Ul>
where Ul: Unsigned + NonZero + Add<Ur>, Ur: Unsigned + NonZero, <Ul as Add<Ur>>::Output: Unsigned + NonZero,

N(Ul) + N(Ur) = N(Ul + Ur)

Source§

type Output = NInt<<Ul as Add<Ur>>::Output>

The resulting type after applying the + operator.
Source§

fn add(self, _: NInt<Ur>) -> <NInt<Ul> as Add<NInt<Ur>>>::Output

Performs the + operation. Read more
Source§

impl<Ul, Ur> Add<PInt<Ur>> for NInt<Ul>
where Ul: Unsigned + NonZero, Ur: Unsigned + NonZero + Cmp<Ul> + PrivateIntegerAdd<<Ur as Cmp<Ul>>::Output, Ul>,

N(Ul) + P(Ur): We resolve this with our PrivateAdd

Source§

type Output = <Ur as PrivateIntegerAdd<<Ur as Cmp<Ul>>::Output, Ul>>::Output

The resulting type after applying the + operator.
Source§

fn add(self, rhs: PInt<Ur>) -> <NInt<Ul> as Add<PInt<Ur>>>::Output

Performs the + operation. Read more
Source§

impl<U> Add<Z0> for NInt<U>
where U: Unsigned + NonZero,

NInt + Z0 = NInt

Source§

type Output = NInt<U>

The resulting type after applying the + operator.
Source§

fn add(self, _: Z0) -> <NInt<U> as Add<Z0>>::Output

Performs the + operation. Read more
Source§

impl<U> Clone for NInt<U>
where U: Clone + Unsigned + NonZero,

Source§

fn clone(&self) -> NInt<U>

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<Nl, Nr> Cmp<NInt<Nr>> for NInt<Nl>
where Nl: Unsigned + NonZero, Nr: Cmp<Nl> + Unsigned + NonZero,

-X <==> -Y

Source§

type Output = <Nr as Cmp<Nl>>::Output

The result of the comparison. It should only ever be one of Greater, Less, or Equal.
Source§

impl<P, N> Cmp<PInt<P>> for NInt<N>
where P: Unsigned + NonZero, N: Unsigned + NonZero,

-X < Y

Source§

type Output = Less

The result of the comparison. It should only ever be one of Greater, Less, or Equal.
Source§

impl<U> Cmp<Z0> for NInt<U>
where U: Unsigned + NonZero,

-X < 0

Source§

type Output = Less

The result of the comparison. It should only ever be one of Greater, Less, or Equal.
Source§

impl<U> Debug for NInt<U>
where U: Debug + Unsigned + NonZero,

Source§

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

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

impl<U> Default for NInt<U>
where U: Default + Unsigned + NonZero,

Source§

fn default() -> NInt<U>

Returns the “default value” for a type. Read more
Source§

impl<Ul, Ur> Div<NInt<Ur>> for NInt<Ul>
where Ul: Unsigned + NonZero + Cmp<Ur>, Ur: Unsigned + NonZero, NInt<Ul>: PrivateDivInt<<Ul as Cmp<Ur>>::Output, NInt<Ur>>,

$A<Ul> / $B<Ur> = $R<Ul / Ur>

Source§

type Output = <NInt<Ul> as PrivateDivInt<<Ul as Cmp<Ur>>::Output, NInt<Ur>>>::Output

The resulting type after applying the / operator.
Source§

fn div(self, rhs: NInt<Ur>) -> <NInt<Ul> as Div<NInt<Ur>>>::Output

Performs the / operation. Read more
Source§

impl<Ul, Ur> Div<PInt<Ur>> for NInt<Ul>
where Ul: Unsigned + NonZero + Cmp<Ur>, Ur: Unsigned + NonZero, NInt<Ul>: PrivateDivInt<<Ul as Cmp<Ur>>::Output, PInt<Ur>>,

$A<Ul> / $B<Ur> = $R<Ul / Ur>

Source§

type Output = <NInt<Ul> as PrivateDivInt<<Ul as Cmp<Ur>>::Output, PInt<Ur>>>::Output

The resulting type after applying the / operator.
Source§

fn div(self, rhs: PInt<Ur>) -> <NInt<Ul> as Div<PInt<Ur>>>::Output

Performs the / operation. Read more
Source§

impl<U1, U2> Gcd<NInt<U2>> for NInt<U1>
where U1: Unsigned + NonZero + Gcd<U2>, U2: Unsigned + NonZero, <U1 as Gcd<U2>>::Output: Unsigned + NonZero,

Source§

type Output = PInt<<U1 as Gcd<U2>>::Output>

The greatest common divisor.
Source§

impl<U1, U2> Gcd<PInt<U2>> for NInt<U1>
where U1: Unsigned + NonZero + Gcd<U2>, U2: Unsigned + NonZero, <U1 as Gcd<U2>>::Output: Unsigned + NonZero,

Source§

type Output = PInt<<U1 as Gcd<U2>>::Output>

The greatest common divisor.
Source§

impl<U> Gcd<Z0> for NInt<U>
where U: Unsigned + NonZero,

Source§

type Output = PInt<U>

The greatest common divisor.
Source§

impl<U> Hash for NInt<U>
where U: Hash + Unsigned + NonZero,

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<U> Integer for NInt<U>
where U: Unsigned + NonZero,

Source§

impl<Ul, Ur> Max<NInt<Ur>> for NInt<Ul>
where Ul: Unsigned + NonZero + Min<Ur>, Ur: Unsigned + NonZero, <Ul as Min<Ur>>::Output: Unsigned + NonZero,

Source§

type Output = NInt<<Ul as Min<Ur>>::Output>

The type of the maximum of Self and Rhs
Source§

fn max(self, rhs: NInt<Ur>) -> <NInt<Ul> as Max<NInt<Ur>>>::Output

Method returning the maximum
Source§

impl<Ul, Ur> Max<PInt<Ur>> for NInt<Ul>
where Ul: Unsigned + NonZero, Ur: Unsigned + NonZero,

Source§

type Output = PInt<Ur>

The type of the maximum of Self and Rhs
Source§

fn max(self, rhs: PInt<Ur>) -> <NInt<Ul> as Max<PInt<Ur>>>::Output

Method returning the maximum
Source§

impl<U> Max<Z0> for NInt<U>
where U: Unsigned + NonZero,

Source§

type Output = Z0

The type of the maximum of Self and Rhs
Source§

fn max(self, rhs: Z0) -> <NInt<U> as Max<Z0>>::Output

Method returning the maximum
Source§

impl<Ul, Ur> Min<NInt<Ur>> for NInt<Ul>
where Ul: Unsigned + NonZero + Max<Ur>, Ur: Unsigned + NonZero, <Ul as Max<Ur>>::Output: Unsigned + NonZero,

Source§

type Output = NInt<<Ul as Max<Ur>>::Output>

The type of the minimum of Self and Rhs
Source§

fn min(self, rhs: NInt<Ur>) -> <NInt<Ul> as Min<NInt<Ur>>>::Output

Method returning the minimum
Source§

impl<Ul, Ur> Min<PInt<Ur>> for NInt<Ul>
where Ul: Unsigned + NonZero, Ur: Unsigned + NonZero,

Source§

type Output = NInt<Ul>

The type of the minimum of Self and Rhs
Source§

fn min(self, _: PInt<Ur>) -> <NInt<Ul> as Min<PInt<Ur>>>::Output

Method returning the minimum
Source§

impl<U> Min<Z0> for NInt<U>
where U: Unsigned + NonZero,

Source§

type Output = NInt<U>

The type of the minimum of Self and Rhs
Source§

fn min(self, _: Z0) -> <NInt<U> as Min<Z0>>::Output

Method returning the minimum
Source§

impl<U> Mul<ATerm> for NInt<U>
where U: Unsigned + NonZero,

Source§

type Output = ATerm

The resulting type after applying the * operator.
Source§

fn mul(self, _: ATerm) -> <NInt<U> as Mul<ATerm>>::Output

Performs the * operation. Read more
Source§

impl<Ul, Ur> Mul<NInt<Ur>> for NInt<Ul>
where Ul: Unsigned + NonZero + Mul<Ur>, Ur: Unsigned + NonZero, <Ul as Mul<Ur>>::Output: Unsigned + NonZero,

N(Ul) * N(Ur) = P(Ul * Ur)

Source§

type Output = PInt<<Ul as Mul<Ur>>::Output>

The resulting type after applying the * operator.
Source§

fn mul(self, _: NInt<Ur>) -> <NInt<Ul> as Mul<NInt<Ur>>>::Output

Performs the * operation. Read more
Source§

impl<Ul, Ur> Mul<PInt<Ur>> for NInt<Ul>
where Ul: Unsigned + NonZero + Mul<Ur>, Ur: Unsigned + NonZero, <Ul as Mul<Ur>>::Output: Unsigned + NonZero,

N(Ul) * P(Ur) = N(Ul * Ur)

Source§

type Output = NInt<<Ul as Mul<Ur>>::Output>

The resulting type after applying the * operator.
Source§

fn mul(self, _: PInt<Ur>) -> <NInt<Ul> as Mul<PInt<Ur>>>::Output

Performs the * operation. Read more
Source§

impl<V, A, U> Mul<TArr<V, A>> for NInt<U>
where U: Unsigned + NonZero, NInt<U>: Mul<A> + Mul<V>,

Source§

type Output = TArr<<NInt<U> as Mul<V>>::Output, <NInt<U> as Mul<A>>::Output>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: TArr<V, A>) -> <NInt<U> as Mul<TArr<V, A>>>::Output

Performs the * operation. Read more
Source§

impl<U> Mul<Z0> for NInt<U>
where U: Unsigned + NonZero,

N * Z0 = Z0

Source§

type Output = Z0

The resulting type after applying the * operator.
Source§

fn mul(self, _: Z0) -> <NInt<U> as Mul<Z0>>::Output

Performs the * operation. Read more
Source§

impl<U> Neg for NInt<U>
where U: Unsigned + NonZero,

-NInt = PInt

Source§

type Output = PInt<U>

The resulting type after applying the - operator.
Source§

fn neg(self) -> <NInt<U> as Neg>::Output

Performs the unary - operation. Read more
Source§

impl<U> Ord for NInt<U>
where U: Ord + Unsigned + NonZero,

Source§

fn cmp(&self, other: &NInt<U>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

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

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

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

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

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

impl<U> PartialEq for NInt<U>
where U: PartialEq + Unsigned + NonZero,

Source§

fn eq(&self, other: &NInt<U>) -> bool

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

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

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

impl<U> PartialOrd for NInt<U>

Source§

fn partial_cmp(&self, other: &NInt<U>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

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

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

impl<Ul, Ur> Pow<PInt<UInt<Ur, B0>>> for NInt<Ul>
where Ul: Unsigned + NonZero + Pow<UInt<Ur, B0>>, Ur: Unsigned, <Ul as Pow<UInt<Ur, B0>>>::Output: Unsigned + NonZero,

N(Ul)^P(Ur) = P(Ul^Ur) if Ur is even

Source§

type Output = PInt<<Ul as Pow<UInt<Ur, B0>>>::Output>

The result of the exponentiation.
Source§

fn powi( self, _: PInt<UInt<Ur, B0>>, ) -> <NInt<Ul> as Pow<PInt<UInt<Ur, B0>>>>::Output

This function isn’t used in this crate, but may be useful for others. It is implemented for primitives. Read more
Source§

impl<Ul, Ur> Pow<PInt<UInt<Ur, B1>>> for NInt<Ul>
where Ul: Unsigned + NonZero + Pow<UInt<Ur, B1>>, Ur: Unsigned, <Ul as Pow<UInt<Ur, B1>>>::Output: Unsigned + NonZero,

N(Ul)^P(Ur) = N(Ul^Ur) if Ur is odd

Source§

type Output = NInt<<Ul as Pow<UInt<Ur, B1>>>::Output>

The result of the exponentiation.
Source§

fn powi( self, _: PInt<UInt<Ur, B1>>, ) -> <NInt<Ul> as Pow<PInt<UInt<Ur, B1>>>>::Output

This function isn’t used in this crate, but may be useful for others. It is implemented for primitives. Read more
Source§

impl<U> Pow<Z0> for NInt<U>
where U: Unsigned + NonZero,

N^0 = 1

Source§

type Output = PInt<UInt<UTerm, B1>>

The result of the exponentiation.
Source§

fn powi(self, _: Z0) -> <NInt<U> as Pow<Z0>>::Output

This function isn’t used in this crate, but may be useful for others. It is implemented for primitives. Read more
Source§

impl<Ul, Ur> Rem<NInt<Ur>> for NInt<Ul>
where Ul: Unsigned + NonZero + Rem<Ur>, Ur: Unsigned + NonZero, NInt<Ul>: PrivateRem<<Ul as Rem<Ur>>::Output, NInt<Ur>>,

$A<Ul> % $B<Ur> = $R<Ul % Ur>

Source§

type Output = <NInt<Ul> as PrivateRem<<Ul as Rem<Ur>>::Output, NInt<Ur>>>::Output

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: NInt<Ur>) -> <NInt<Ul> as Rem<NInt<Ur>>>::Output

Performs the % operation. Read more
Source§

impl<Ul, Ur> Rem<PInt<Ur>> for NInt<Ul>
where Ul: Unsigned + NonZero + Rem<Ur>, Ur: Unsigned + NonZero, NInt<Ul>: PrivateRem<<Ul as Rem<Ur>>::Output, PInt<Ur>>,

$A<Ul> % $B<Ur> = $R<Ul % Ur>

Source§

type Output = <NInt<Ul> as PrivateRem<<Ul as Rem<Ur>>::Output, PInt<Ur>>>::Output

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: PInt<Ur>) -> <NInt<Ul> as Rem<PInt<Ur>>>::Output

Performs the % operation. Read more
Source§

impl<Ul, Ur> Sub<NInt<Ur>> for NInt<Ul>
where Ul: Unsigned + NonZero, Ur: Unsigned + NonZero + Cmp<Ul> + PrivateIntegerAdd<<Ur as Cmp<Ul>>::Output, Ul>,

N(Ul) - N(Ur): We resolve this with our PrivateAdd

Source§

type Output = <Ur as PrivateIntegerAdd<<Ur as Cmp<Ul>>::Output, Ul>>::Output

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: NInt<Ur>) -> <NInt<Ul> as Sub<NInt<Ur>>>::Output

Performs the - operation. Read more
Source§

impl<Ul, Ur> Sub<PInt<Ur>> for NInt<Ul>
where Ul: Unsigned + NonZero + Add<Ur>, Ur: Unsigned + NonZero, <Ul as Add<Ur>>::Output: Unsigned + NonZero,

N(Ul) - P(Ur) = N(Ul + Ur)

Source§

type Output = NInt<<Ul as Add<Ur>>::Output>

The resulting type after applying the - operator.
Source§

fn sub(self, _: PInt<Ur>) -> <NInt<Ul> as Sub<PInt<Ur>>>::Output

Performs the - operation. Read more
Source§

impl<U> Sub<Z0> for NInt<U>
where U: Unsigned + NonZero,

NInt - Z0 = NInt

Source§

type Output = NInt<U>

The resulting type after applying the - operator.
Source§

fn sub(self, _: Z0) -> <NInt<U> as Sub<Z0>>::Output

Performs the - operation. Read more
Source§

impl<U> ToInt<i16> for NInt<U>
where U: Unsigned + NonZero,

Source§

fn to_int() -> i16

Method returning the concrete value for the type.
Source§

impl<U> ToInt<i32> for NInt<U>
where U: Unsigned + NonZero,

Source§

fn to_int() -> i32

Method returning the concrete value for the type.
Source§

impl<U> ToInt<i64> for NInt<U>
where U: Unsigned + NonZero,

Source§

fn to_int() -> i64

Method returning the concrete value for the type.
Source§

impl<U> ToInt<i8> for NInt<U>
where U: Unsigned + NonZero,

Source§

fn to_int() -> i8

Method returning the concrete value for the type.
Source§

impl<U> Copy for NInt<U>
where U: Copy + Unsigned + NonZero,

Source§

impl<U> Eq for NInt<U>
where U: Eq + Unsigned + NonZero,

Source§

impl<U> NonZero for NInt<U>
where U: Unsigned + NonZero,

Source§

impl<U> StructuralPartialEq for NInt<U>
where U: Unsigned + NonZero,