Type Alias typenum::consts::N304

source ·
pub type N304 = NInt<U304>;

Aliased Type§

struct N304 { /* private fields */ }

Implementations§

source§

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

source

pub fn new() -> NInt<U>

Instantiates a singleton representing this strictly negative integer.

Trait Implementations§

source§

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

§

type Output = PInt<U>

The absolute value.
source§

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

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

§

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

The resulting type after applying the + operator.
source§

fn add(self, _: NInt<Ur>) -> Self::Output

Performs the + operation. Read more
source§

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

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

§

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>) -> Self::Output

Performs the + operation. Read more
source§

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

NInt + Z0 = NInt

§

type Output = NInt<U>

The resulting type after applying the + operator.
source§

fn add(self, _: Z0) -> Self::Output

Performs the + operation. Read more
source§

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

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

-X <==> -Y

§

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: Unsigned + NonZero, N: Unsigned + NonZero> Cmp<PInt<P>> for NInt<N>

-X < Y

§

type Output = Less

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

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

-X < 0

§

type Output = Less

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

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

source§

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

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

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

source§

fn default() -> NInt<U>

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

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

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

§

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>) -> Self::Output

Performs the / operation. Read more
source§

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

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

§

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>) -> Self::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, Gcf<U1, U2>: Unsigned + NonZero,

§

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, Gcf<U1, U2>: Unsigned + NonZero,

§

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

The greatest common divisor.
source§

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

§

type Output = PInt<U>

The greatest common divisor.
source§

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

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

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

source§

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

§

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

The type of the maximum of Self and Rhs
source§

fn max(self, rhs: NInt<Ur>) -> Self::Output

Method returning the maximum
source§

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

§

type Output = PInt<Ur>

The type of the maximum of Self and Rhs
source§

fn max(self, rhs: PInt<Ur>) -> Self::Output

Method returning the maximum
source§

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

§

type Output = Z0

The type of the maximum of Self and Rhs
source§

fn max(self, rhs: Z0) -> Self::Output

Method returning the maximum
source§

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

§

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

The type of the minimum of Self and Rhs
source§

fn min(self, rhs: NInt<Ur>) -> Self::Output

Method returning the minimum
source§

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

§

type Output = NInt<Ul>

The type of the minimum of Self and Rhs
source§

fn min(self, _: PInt<Ur>) -> Self::Output

Method returning the minimum
source§

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

§

type Output = NInt<U>

The type of the minimum of Self and Rhs
source§

fn min(self, _: Z0) -> Self::Output

Method returning the minimum
source§

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

§

type Output = ATerm

The resulting type after applying the * operator.
source§

fn mul(self, _: ATerm) -> Self::Output

Performs the * operation. Read more
source§

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

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

§

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

The resulting type after applying the * operator.
source§

fn mul(self, _: NInt<Ur>) -> Self::Output

Performs the * operation. Read more
source§

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

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

§

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

The resulting type after applying the * operator.
source§

fn mul(self, _: PInt<Ur>) -> Self::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>,

§

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>) -> Self::Output

Performs the * operation. Read more
source§

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

N * Z0 = Z0

§

type Output = Z0

The resulting type after applying the * operator.
source§

fn mul(self, _: Z0) -> Self::Output

Performs the * operation. Read more
source§

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

-NInt = PInt

§

type Output = PInt<U>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
source§

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

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) -> 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<U: PartialEq + Unsigned + NonZero> PartialEq<NInt<U>> for NInt<U>

source§

fn eq(&self, other: &NInt<U>) -> 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<U: PartialOrd + Unsigned + NonZero> PartialOrd<NInt<U>> 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

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<Ul, Ur: Unsigned> Pow<PInt<UInt<Ur, B0>>> for NInt<Ul>where Ul: Pow<UInt<Ur, B0>> + Unsigned + NonZero, <Ul as Pow<UInt<Ur, B0>>>::Output: Unsigned + NonZero,

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

§

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

The result of the exponentiation.
source§

fn powi(self, _: PInt<UInt<Ur, B0>>) -> Self::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: Unsigned> Pow<PInt<UInt<Ur, B1>>> for NInt<Ul>where Ul: Pow<UInt<Ur, B1>> + Unsigned + NonZero, <Ul as Pow<UInt<Ur, B1>>>::Output: Unsigned + NonZero,

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

§

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

The result of the exponentiation.
source§

fn powi(self, _: PInt<UInt<Ur, B1>>) -> Self::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: Unsigned + NonZero> Pow<Z0> for NInt<U>

N^0 = 1

§

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

The result of the exponentiation.
source§

fn powi(self, _: Z0) -> Self::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: Unsigned + NonZero> Rem<NInt<Ur>> for NInt<Ul>where Ul: Rem<Ur> + Unsigned + NonZero, NInt<Ul>: PrivateRem<<Ul as Rem<Ur>>::Output, NInt<Ur>>,

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

§

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>) -> Self::Output

Performs the % operation. Read more
source§

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

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

§

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>) -> Self::Output

Performs the % operation. Read more
source§

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

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

§

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>) -> Self::Output

Performs the - operation. Read more
source§

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

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

§

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

The resulting type after applying the - operator.
source§

fn sub(self, _: PInt<Ur>) -> Self::Output

Performs the - operation. Read more
source§

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

NInt - Z0 = NInt

§

type Output = NInt<U>

The resulting type after applying the - operator.
source§

fn sub(self, _: Z0) -> Self::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§

const INT: i16 = Self::I16

The concrete value for the type. Can be used in const contexts.
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§

const INT: i32 = Self::I32

The concrete value for the type. Can be used in const contexts.
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§

const INT: i64 = Self::I64

The concrete value for the type. Can be used in const contexts.
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§

const INT: i8 = Self::I8

The concrete value for the type. Can be used in const contexts.
source§

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

source§

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

source§

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

source§

impl<U: Unsigned + NonZero> StructuralEq for NInt<U>

source§

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