Type Alias P189

Source
pub type P189 = PInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B1>>;

Aliased Type§

struct P189 { /* private fields */ }

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 0 bytes

Implementations

Source§

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

Source

pub fn new() -> PInt<U>

Instantiates a singleton representing this strictly positive integer.

Trait Implementations

Source§

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

Source§

type Output = PInt<U>

The absolute value.
Source§

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

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

Source§

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

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

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

P(Ul) + P(Ur) = P(Ul + Ur)

Source§

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

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

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

PInt + Z0 = PInt

Source§

type Output = PInt<U>

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

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

Source§

fn clone(&self) -> PInt<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<P, N> Cmp<NInt<N>> for PInt<P>
where P: Unsigned + NonZero, N: Unsigned + NonZero,

X > - Y

Source§

type Output = Greater

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

impl<Pl, Pr> Cmp<PInt<Pr>> for PInt<Pl>
where Pl: Cmp<Pr> + Unsigned + NonZero, Pr: Unsigned + NonZero,

X <==> Y

Source§

type Output = <Pl as Cmp<Pr>>::Output

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

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

X > 0

Source§

type Output = Greater

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

impl<U> Debug for PInt<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 PInt<U>
where U: Default + Unsigned + NonZero,

Source§

fn default() -> PInt<U>

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

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

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

Source§

type Output = <PInt<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>) -> <PInt<Ul> as Div<NInt<Ur>>>::Output

Performs the / operation. Read more
Source§

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

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

Source§

type Output = <PInt<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>) -> <PInt<Ul> as Div<PInt<Ur>>>::Output

Performs the / operation. Read more
Source§

impl<U1, U2> Gcd<NInt<U2>> for PInt<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 PInt<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 PInt<U>
where U: Unsigned + NonZero,

Source§

type Output = PInt<U>

The greatest common divisor.
Source§

impl<U> Hash for PInt<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 PInt<U>
where U: Unsigned + NonZero,

Source§

const I8: i8 = U::I8

Source§

const I16: i16 = U::I16

Source§

const I32: i32 = U::I32

Source§

const I64: i64 = U::I64

Source§

const ISIZE: isize = U::ISIZE

Source§

fn to_i8() -> i8

Source§

fn to_i16() -> i16

Source§

fn to_i32() -> i32

Source§

fn to_i64() -> i64

Source§

fn to_isize() -> isize

Source§

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

Source§

type Output = PInt<Ul>

The type of the maximum of Self and Rhs
Source§

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

Method returning the maximum
Source§

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

Source§

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

The type of the maximum of Self and Rhs
Source§

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

Method returning the maximum
Source§

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

Source§

type Output = PInt<U>

The type of the maximum of Self and Rhs
Source§

fn max(self, _: Z0) -> <PInt<U> as Max<Z0>>::Output

Method returning the maximum
Source§

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

Source§

type Output = NInt<Ur>

The type of the minimum of Self and Rhs
Source§

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

Method returning the minimum
Source§

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

Source§

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

The type of the minimum of Self and Rhs
Source§

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

Method returning the minimum
Source§

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

Source§

type Output = Z0

The type of the minimum of Self and Rhs
Source§

fn min(self, rhs: Z0) -> <PInt<U> as Min<Z0>>::Output

Method returning the minimum
Source§

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

Source§

type Output = ATerm

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

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

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

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

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Source§

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

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

P * Z0 = Z0

Source§

type Output = Z0

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

-PInt = NInt

Source§

type Output = NInt<U>

The resulting type after applying the - operator.
Source§

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

Performs the unary - operation. Read more
Source§

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

Source§

fn cmp(&self, other: &PInt<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 PInt<U>
where U: PartialEq + Unsigned + NonZero,

Source§

fn eq(&self, other: &PInt<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 PInt<U>

Source§

fn partial_cmp(&self, other: &PInt<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<Ur>> for PInt<Ul>
where Ul: Unsigned + NonZero + Pow<Ur>, Ur: Unsigned + NonZero, <Ul as Pow<Ur>>::Output: Unsigned + NonZero,

P(Ul)^P(Ur) = P(Ul^Ur)

Source§

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

The result of the exponentiation.
Source§

fn powi(self, _: PInt<Ur>) -> <PInt<Ul> as Pow<PInt<Ur>>>::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 PInt<U>
where U: Unsigned + NonZero,

P^0 = 1

Source§

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

The result of the exponentiation.
Source§

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

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

Source§

type Output = <PInt<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>) -> <PInt<Ul> as Rem<NInt<Ur>>>::Output

Performs the % operation. Read more
Source§

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

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

Source§

type Output = <PInt<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>) -> <PInt<Ul> as Rem<PInt<Ur>>>::Output

Performs the % operation. Read more
Source§

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

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

Source§

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

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

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

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

Source§

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

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

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

PInt - Z0 = PInt

Source§

type Output = PInt<U>

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

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

Source§

const INT: i16 = Self::I16

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

fn to_int() -> i16

Method returning the concrete value for the type.
Source§

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

Source§

const INT: i32 = Self::I32

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

fn to_int() -> i32

Method returning the concrete value for the type.
Source§

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

Source§

const INT: i64 = Self::I64

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

fn to_int() -> i64

Method returning the concrete value for the type.
Source§

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

Source§

const INT: i8 = Self::I8

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

fn to_int() -> i8

Method returning the concrete value for the type.
Source§

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

Source§

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

Source§

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

Source§

impl<U> PowerOfTwo for PInt<U>

Source§

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