Struct diffgeom::typenum::NInt  
                   
                       [−]
                   
               
pub struct NInt<U> where
    U: NonZero + Unsigned,  { /* fields omitted */ }Type-level signed integers with negative sign.
Methods
impl<U> NInt<U> where
    U: NonZero + Unsigned, 
U: NonZero + Unsigned,
Trait Implementations
impl<U> Clone for NInt<U> where
    U: NonZero + Unsigned + Clone, 
U: NonZero + Unsigned + Clone,
fn clone(&self) -> NInt<U>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl<Nl, Nr> Cmp<NInt<Nr>> for NInt<Nl> where
    Nl: NonZero + Unsigned,
    Nr: NonZero + Unsigned + Cmp<Nl>, 
Nl: NonZero + Unsigned,
Nr: NonZero + Unsigned + Cmp<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.
impl<P, N> Cmp<PInt<P>> for NInt<N> where
    N: NonZero + Unsigned,
    P: NonZero + Unsigned, 
N: NonZero + Unsigned,
P: NonZero + Unsigned,
-X < Y
type Output = Less
The result of the comparison. It should only ever be one of Greater, Less, or Equal.
impl<U> Cmp<Z0> for NInt<U> where
    U: NonZero + Unsigned, 
U: NonZero + Unsigned,
-X < 0
type Output = Less
The result of the comparison. It should only ever be one of Greater, Less, or Equal.
impl<U> Add<Z0> for NInt<U> where
    U: NonZero + Unsigned, 
U: NonZero + Unsigned,
NInt + Z0 = NInt
type Output = NInt<U>
The resulting type after applying the + operator
fn add(self, Z0) -> <NInt<U> as Add<Z0>>::Output
The method for the + operator
impl<Ul, Ur> Add<NInt<Ur>> for NInt<Ul> where
    Ul: NonZero + Unsigned + Add<Ur>,
    Ur: NonZero + Unsigned,
    <Ul as Add<Ur>>::Output: Unsigned,
    <Ul as Add<Ur>>::Output: NonZero, 
Ul: NonZero + Unsigned + Add<Ur>,
Ur: NonZero + Unsigned,
<Ul as Add<Ur>>::Output: Unsigned,
<Ul as Add<Ur>>::Output: NonZero,
N(Ul) + N(Ur) = N(Ul + Ur)
type Output = NInt<<Ul as Add<Ur>>::Output>
The resulting type after applying the + operator
fn add(self, NInt<Ur>) -> <NInt<Ul> as Add<NInt<Ur>>>::Output
The method for the + operator
impl<Ul, Ur> Add<PInt<Ur>> for NInt<Ul> where
    Ul: NonZero + Unsigned,
    Ur: NonZero + Unsigned + Cmp<Ul> + PrivateIntegerAdd<<Ur as Cmp<Ul>>::Output, Ul>, 
Ul: NonZero + Unsigned,
Ur: NonZero + Unsigned + Cmp<Ul> + PrivateIntegerAdd<<Ur as Cmp<Ul>>::Output, Ul>,
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
fn add(self, PInt<Ur>) -> <NInt<Ul> as Add<PInt<Ur>>>::Output
The method for the + operator
impl<U> Debug for NInt<U> where
    U: NonZero + Unsigned + Debug, 
U: NonZero + Unsigned + Debug,
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.
impl<U> Neg for NInt<U> where
    U: NonZero + Unsigned, 
U: NonZero + Unsigned,
-NInt = PInt
impl<U> Pow<NInt<UInt<U, B0>>> for NInt<UInt<UTerm, B1>> where
    U: Unsigned, 
U: Unsigned,
(-1)N = 1 if N is even
type Output = PInt<UInt<UTerm, B1>>
The result of the exponentiation.
fn powi(
    self, 
    NInt<UInt<U, B0>>
) -> <NInt<UInt<UTerm, B1>> as Pow<NInt<UInt<U, B0>>>>::Output
self,
NInt<UInt<U, B0>>
) -> <NInt<UInt<UTerm, B1>> as Pow<NInt<UInt<U, B0>>>>::Output
This function isn't used in this crate, but may be useful for others. It is implemented for primitives. Read more
impl<U> Pow<Z0> for NInt<U> where
    U: NonZero + Unsigned, 
U: NonZero + Unsigned,
N0 = 1
type Output = PInt<UInt<UTerm, B1>>
The result of the exponentiation.
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
impl<Ul, Ur> Pow<PInt<UInt<Ur, B1>>> for NInt<Ul> where
    Ul: NonZero + Unsigned + Pow<UInt<Ur, B1>>,
    Ur: Unsigned,
    <Ul as Pow<UInt<Ur, B1>>>::Output: Unsigned,
    <Ul as Pow<UInt<Ur, B1>>>::Output: NonZero, 
Ul: NonZero + Unsigned + Pow<UInt<Ur, B1>>,
Ur: Unsigned,
<Ul as Pow<UInt<Ur, B1>>>::Output: Unsigned,
<Ul as Pow<UInt<Ur, B1>>>::Output: NonZero,
N(Ul)P(Ur) = N(UlUr) if Ur is odd
type Output = NInt<<Ul as Pow<UInt<Ur, B1>>>::Output>
The result of the exponentiation.
fn powi(
    self, 
    PInt<UInt<Ur, B1>>
) -> <NInt<Ul> as Pow<PInt<UInt<Ur, B1>>>>::Output
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
impl<Ul, Ur> Pow<PInt<UInt<Ur, B0>>> for NInt<Ul> where
    Ul: NonZero + Unsigned + Pow<UInt<Ur, B0>>,
    Ur: Unsigned,
    <Ul as Pow<UInt<Ur, B0>>>::Output: Unsigned,
    <Ul as Pow<UInt<Ur, B0>>>::Output: NonZero, 
Ul: NonZero + Unsigned + Pow<UInt<Ur, B0>>,
Ur: Unsigned,
<Ul as Pow<UInt<Ur, B0>>>::Output: Unsigned,
<Ul as Pow<UInt<Ur, B0>>>::Output: NonZero,
N(Ul)P(Ur) = P(UlUr) if Ur is even
type Output = PInt<<Ul as Pow<UInt<Ur, B0>>>::Output>
The result of the exponentiation.
fn powi(
    self, 
    PInt<UInt<Ur, B0>>
) -> <NInt<Ul> as Pow<PInt<UInt<Ur, B0>>>>::Output
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
impl<U> Pow<NInt<UInt<U, B1>>> for NInt<UInt<UTerm, B1>> where
    U: Unsigned, 
U: Unsigned,
(-1)N = -1 if N is odd
type Output = NInt<UInt<UTerm, B1>>
The result of the exponentiation.
fn powi(
    self, 
    NInt<UInt<U, B1>>
) -> <NInt<UInt<UTerm, B1>> as Pow<NInt<UInt<U, B1>>>>::Output
self,
NInt<UInt<U, B1>>
) -> <NInt<UInt<UTerm, B1>> as Pow<NInt<UInt<U, B1>>>>::Output
This function isn't used in this crate, but may be useful for others. It is implemented for primitives. Read more
impl<U> Eq for NInt<U> where
    U: NonZero + Unsigned + Eq, 
U: NonZero + Unsigned + Eq,
impl<Ul, Ur> Min<PInt<Ur>> for NInt<Ul> where
    Ul: Unsigned + NonZero,
    Ur: Unsigned + NonZero, 
Ul: Unsigned + NonZero,
Ur: Unsigned + NonZero,
type Output = NInt<Ul>
The type of the minimum of Self and Rhs
fn min(self, PInt<Ur>) -> <NInt<Ul> as Min<PInt<Ur>>>::Output
Method returning the minimum
impl<Ul, Ur> Min<NInt<Ur>> for NInt<Ul> where
    Ul: Unsigned + NonZero + Max<Ur>,
    Ur: Unsigned + NonZero,
    <Ul as Max<Ur>>::Output: Unsigned,
    <Ul as Max<Ur>>::Output: NonZero, 
Ul: Unsigned + NonZero + Max<Ur>,
Ur: Unsigned + NonZero,
<Ul as Max<Ur>>::Output: Unsigned,
<Ul as Max<Ur>>::Output: NonZero,
type Output = NInt<<Ul as Max<Ur>>::Output>
The type of the minimum of Self and Rhs
fn min(self, NInt<Ur>) -> <NInt<Ul> as Min<NInt<Ur>>>::Output
Method returning the minimum
impl<U> Min<Z0> for NInt<U> where
    U: Unsigned + NonZero, 
U: Unsigned + NonZero,
type Output = NInt<U>
The type of the minimum of Self and Rhs
fn min(self, Z0) -> <NInt<U> as Min<Z0>>::Output
Method returning the minimum
impl<Ul, Ur> Rem<PInt<Ur>> for NInt<Ul> where
    Ul: NonZero + Unsigned + Rem<Ur>,
    Ur: NonZero + Unsigned,
    NInt<Ul>: PrivateRem<<Ul as Rem<Ur>>::Output, PInt<Ur>>, 
Ul: NonZero + Unsigned + Rem<Ur>,
Ur: NonZero + Unsigned,
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
fn rem(self, PInt<Ur>) -> <NInt<Ul> as Rem<PInt<Ur>>>::Output
impl<Ul, Ur> Rem<NInt<Ur>> for NInt<Ul> where
    Ul: NonZero + Unsigned + Rem<Ur>,
    Ur: NonZero + Unsigned,
    NInt<Ul>: PrivateRem<<Ul as Rem<Ur>>::Output, NInt<Ur>>, 
Ul: NonZero + Unsigned + Rem<Ur>,
Ur: NonZero + Unsigned,
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
fn rem(self, NInt<Ur>) -> <NInt<Ul> as Rem<NInt<Ur>>>::Output
impl<U> Integer for NInt<U> where
    U: NonZero + Unsigned, 
U: NonZero + Unsigned,
impl<V, A, U> Mul<TArr<V, A>> for NInt<U> where
    U: Unsigned + NonZero,
    NInt<U>: Mul<A>,
    NInt<U>: Mul<V>, 
U: Unsigned + NonZero,
NInt<U>: Mul<A>,
NInt<U>: Mul<V>,
type Output = TArr<<NInt<U> as Mul<V>>::Output, <NInt<U> as Mul<A>>::Output>
The resulting type after applying the * operator
fn mul(self, TArr<V, A>) -> <NInt<U> as Mul<TArr<V, A>>>::Output
The method for the * operator
impl<U> Mul<ATerm> for NInt<U> where
    U: Unsigned + NonZero, 
U: Unsigned + NonZero,
type Output = ATerm
The resulting type after applying the * operator
fn mul(self, ATerm) -> <NInt<U> as Mul<ATerm>>::Output
The method for the * operator
impl<Ul, Ur> Mul<NInt<Ur>> for NInt<Ul> where
    Ul: NonZero + Unsigned + Mul<Ur>,
    Ur: NonZero + Unsigned,
    <Ul as Mul<Ur>>::Output: Unsigned,
    <Ul as Mul<Ur>>::Output: NonZero, 
Ul: NonZero + Unsigned + Mul<Ur>,
Ur: NonZero + Unsigned,
<Ul as Mul<Ur>>::Output: Unsigned,
<Ul as Mul<Ur>>::Output: NonZero,
N(Ul) * N(Ur) = P(Ul * Ur)
type Output = PInt<<Ul as Mul<Ur>>::Output>
The resulting type after applying the * operator
fn mul(self, NInt<Ur>) -> <NInt<Ul> as Mul<NInt<Ur>>>::Output
The method for the * operator
impl<Ul, Ur> Mul<PInt<Ur>> for NInt<Ul> where
    Ul: NonZero + Unsigned + Mul<Ur>,
    Ur: NonZero + Unsigned,
    <Ul as Mul<Ur>>::Output: Unsigned,
    <Ul as Mul<Ur>>::Output: NonZero, 
Ul: NonZero + Unsigned + Mul<Ur>,
Ur: NonZero + Unsigned,
<Ul as Mul<Ur>>::Output: Unsigned,
<Ul as Mul<Ur>>::Output: NonZero,
N(Ul) * P(Ur) = N(Ul * Ur)
type Output = NInt<<Ul as Mul<Ur>>::Output>
The resulting type after applying the * operator
fn mul(self, PInt<Ur>) -> <NInt<Ul> as Mul<PInt<Ur>>>::Output
The method for the * operator
impl<U> Mul<Z0> for NInt<U> where
    U: NonZero + Unsigned, 
U: NonZero + Unsigned,
N * Z0 = Z0
type Output = Z0
The resulting type after applying the * operator
fn mul(self, Z0) -> <NInt<U> as Mul<Z0>>::Output
The method for the * operator
impl<Ul, Ur> Div<PInt<Ur>> for NInt<Ul> where
    Ul: NonZero + Unsigned + Cmp<Ur>,
    Ur: NonZero + Unsigned,
    NInt<Ul>: PrivateDivInt<<Ul as Cmp<Ur>>::Output, PInt<Ur>>, 
Ul: NonZero + Unsigned + Cmp<Ur>,
Ur: NonZero + Unsigned,
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
fn div(self, PInt<Ur>) -> <NInt<Ul> as Div<PInt<Ur>>>::Output
The method for the / operator
impl<Ul, Ur> Div<NInt<Ur>> for NInt<Ul> where
    Ul: NonZero + Unsigned + Cmp<Ur>,
    Ur: NonZero + Unsigned,
    NInt<Ul>: PrivateDivInt<<Ul as Cmp<Ur>>::Output, NInt<Ur>>, 
Ul: NonZero + Unsigned + Cmp<Ur>,
Ur: NonZero + Unsigned,
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
fn div(self, NInt<Ur>) -> <NInt<Ul> as Div<NInt<Ur>>>::Output
The method for the / operator
impl<U> Default for NInt<U> where
    U: NonZero + Unsigned + Default, 
U: NonZero + Unsigned + Default,
impl<U> NonZero for NInt<U> where
    U: NonZero + Unsigned, 
U: NonZero + Unsigned,
impl<U> PartialOrd<NInt<U>> for NInt<U> where
    U: NonZero + Unsigned + PartialOrd<U>, 
U: NonZero + Unsigned + PartialOrd<U>,
fn partial_cmp(&self, __arg_0: &NInt<U>) -> Option<Ordering>
fn lt(&self, __arg_0: &NInt<U>) -> bool
fn le(&self, __arg_0: &NInt<U>) -> bool
fn gt(&self, __arg_0: &NInt<U>) -> bool
fn ge(&self, __arg_0: &NInt<U>) -> bool
impl<U> Hash for NInt<U> where
    U: NonZero + Unsigned + Hash, 
U: NonZero + Unsigned + Hash,
impl<U> PartialEq<NInt<U>> for NInt<U> where
    U: NonZero + Unsigned + PartialEq<U>, 
U: NonZero + Unsigned + PartialEq<U>,
fn eq(&self, __arg_0: &NInt<U>) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &NInt<U>) -> bool
This method tests for !=.
impl<Ul, Ur> Max<PInt<Ur>> for NInt<Ul> where
    Ul: Unsigned + NonZero,
    Ur: Unsigned + NonZero, 
Ul: Unsigned + NonZero,
Ur: Unsigned + NonZero,
type Output = PInt<Ur>
The type of the maximum of Self and Rhs
fn max(self, rhs: PInt<Ur>) -> <NInt<Ul> as Max<PInt<Ur>>>::Output
Method returning the maximum
impl<U> Max<Z0> for NInt<U> where
    U: Unsigned + NonZero, 
U: Unsigned + NonZero,
type Output = Z0
The type of the maximum of Self and Rhs
fn max(self, rhs: Z0) -> <NInt<U> as Max<Z0>>::Output
Method returning the maximum
impl<Ul, Ur> Max<NInt<Ur>> for NInt<Ul> where
    Ul: Unsigned + NonZero + Min<Ur>,
    Ur: Unsigned + NonZero,
    <Ul as Min<Ur>>::Output: Unsigned,
    <Ul as Min<Ur>>::Output: NonZero, 
Ul: Unsigned + NonZero + Min<Ur>,
Ur: Unsigned + NonZero,
<Ul as Min<Ur>>::Output: Unsigned,
<Ul as Min<Ur>>::Output: NonZero,
type Output = NInt<<Ul as Min<Ur>>::Output>
The type of the maximum of Self and Rhs
fn max(self, NInt<Ur>) -> <NInt<Ul> as Max<NInt<Ur>>>::Output
Method returning the maximum
impl<U> Abs for NInt<U> where
    U: NonZero + Unsigned, 
U: NonZero + Unsigned,
impl<Ul, Ur> Sub<PInt<Ur>> for NInt<Ul> where
    Ul: NonZero + Unsigned + Add<Ur>,
    Ur: NonZero + Unsigned,
    <Ul as Add<Ur>>::Output: Unsigned,
    <Ul as Add<Ur>>::Output: NonZero, 
Ul: NonZero + Unsigned + Add<Ur>,
Ur: NonZero + Unsigned,
<Ul as Add<Ur>>::Output: Unsigned,
<Ul as Add<Ur>>::Output: NonZero,
N(Ul) - P(Ur) = N(Ul + Ur)
type Output = NInt<<Ul as Add<Ur>>::Output>
The resulting type after applying the - operator
fn sub(self, PInt<Ur>) -> <NInt<Ul> as Sub<PInt<Ur>>>::Output
The method for the - operator
impl<U> Sub<Z0> for NInt<U> where
    U: NonZero + Unsigned, 
U: NonZero + Unsigned,
NInt - Z0 = NInt
type Output = NInt<U>
The resulting type after applying the - operator
fn sub(self, Z0) -> <NInt<U> as Sub<Z0>>::Output
The method for the - operator
impl<Ul, Ur> Sub<NInt<Ur>> for NInt<Ul> where
    Ul: NonZero + Unsigned,
    Ur: NonZero + Unsigned + Cmp<Ul> + PrivateIntegerAdd<<Ur as Cmp<Ul>>::Output, Ul>, 
Ul: NonZero + Unsigned,
Ur: NonZero + Unsigned + Cmp<Ul> + PrivateIntegerAdd<<Ur as Cmp<Ul>>::Output, Ul>,
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
fn sub(self, NInt<Ur>) -> <NInt<Ul> as Sub<NInt<Ur>>>::Output
The method for the - operator
impl<U> Ord for NInt<U> where
    U: NonZero + Unsigned + Ord, 
U: NonZero + Unsigned + Ord,
impl<U> Copy for NInt<U> where
    U: NonZero + Unsigned + Copy, 
U: NonZero + Unsigned + Copy,