[−][src]Struct typenum::array::TArr
TArr
is a type that acts as an array of types. It is defined similarly to UInt
, only its
values can be more than bits, and it is designed to act as an array. So you can only add two if
they have the same number of elements, for example.
This array is only really designed to contain Integer
types. If you use it with others, you
may find it lacking functionality.
Trait Implementations
impl<V, A> TypeArray for TArr<V, A>
[src]
impl<V, A> TypeArray for TArr<V, A>
impl<V, A> Len for TArr<V, A> where
A: Len,
Length<A>: Add<B1>,
Sum<Length<A>, B1>: Unsigned,
[src]
impl<V, A> Len for TArr<V, A> where
A: Len,
Length<A>: Add<B1>,
Sum<Length<A>, B1>: Unsigned,
Size of a TypeArray
type Output = Add1<Length<A>>
The length as a type-level unsigned integer.
fn len(&self) -> Self::Output
[src]
fn len(&self) -> Self::Output
This function isn't used in this crate, but may be useful for others.
impl<V, A, Rhs> PartialDiv<Rhs> for TArr<V, A> where
V: PartialDiv<Rhs>,
A: PartialDiv<Rhs>,
[src]
impl<V, A, Rhs> PartialDiv<Rhs> for TArr<V, A> where
V: PartialDiv<Rhs>,
A: PartialDiv<Rhs>,
type Output = TArr<PartialQuot<V, Rhs>, PartialQuot<A, Rhs>>
The type of the result of the division
fn partial_div(self, _: Rhs) -> Self::Output
[src]
fn partial_div(self, _: Rhs) -> Self::Output
Method for performing the division
impl<V: PartialEq, A: PartialEq> PartialEq<TArr<V, A>> for TArr<V, A>
[src]
impl<V: PartialEq, A: PartialEq> PartialEq<TArr<V, A>> for TArr<V, A>
fn eq(&self, other: &TArr<V, A>) -> bool
[src]
fn eq(&self, other: &TArr<V, A>) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &TArr<V, A>) -> bool
[src]
fn ne(&self, other: &TArr<V, A>) -> bool
This method tests for !=
.
impl<V: Eq, A: Eq> Eq for TArr<V, A>
[src]
impl<V: Eq, A: Eq> Eq for TArr<V, A>
impl<V: Ord, A: Ord> Ord for TArr<V, A>
[src]
impl<V: Ord, A: Ord> Ord for TArr<V, A>
fn cmp(&self, other: &TArr<V, A>) -> Ordering
[src]
fn cmp(&self, other: &TArr<V, A>) -> Ordering
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.21.0[src]
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
impl<V: PartialOrd, A: PartialOrd> PartialOrd<TArr<V, A>> for TArr<V, A>
[src]
impl<V: PartialOrd, A: PartialOrd> PartialOrd<TArr<V, A>> for TArr<V, A>
fn partial_cmp(&self, other: &TArr<V, A>) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &TArr<V, A>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &TArr<V, A>) -> bool
[src]
fn lt(&self, other: &TArr<V, A>) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &TArr<V, A>) -> bool
[src]
fn le(&self, other: &TArr<V, A>) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &TArr<V, A>) -> bool
[src]
fn gt(&self, other: &TArr<V, A>) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &TArr<V, A>) -> bool
[src]
fn ge(&self, other: &TArr<V, A>) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl<V: Debug, A: Debug> Debug for TArr<V, A>
[src]
impl<V: Debug, A: Debug> Debug for TArr<V, A>
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl<V, A, Rhs> Div<Rhs> for TArr<V, A> where
V: Div<Rhs>,
A: Div<Rhs>,
[src]
impl<V, A, Rhs> Div<Rhs> for TArr<V, A> where
V: Div<Rhs>,
A: Div<Rhs>,
type Output = TArr<Quot<V, Rhs>, Quot<A, Rhs>>
The resulting type after applying the /
operator.
fn div(self, _: Rhs) -> Self::Output
[src]
fn div(self, _: Rhs) -> Self::Output
Performs the /
operation.
impl<V, A, Rhs> Rem<Rhs> for TArr<V, A> where
V: Rem<Rhs>,
A: Rem<Rhs>,
[src]
impl<V, A, Rhs> Rem<Rhs> for TArr<V, A> where
V: Rem<Rhs>,
A: Rem<Rhs>,
type Output = TArr<Mod<V, Rhs>, Mod<A, Rhs>>
The resulting type after applying the %
operator.
fn rem(self, _: Rhs) -> Self::Output
[src]
fn rem(self, _: Rhs) -> Self::Output
Performs the %
operation.
impl<Al, Vl, Ar, Vr> Add<TArr<Vr, Ar>> for TArr<Vl, Al> where
Al: Add<Ar>,
Vl: Add<Vr>,
[src]
impl<Al, Vl, Ar, Vr> Add<TArr<Vr, Ar>> for TArr<Vl, Al> where
Al: Add<Ar>,
Vl: Add<Vr>,
type Output = TArr<Sum<Vl, Vr>, Sum<Al, Ar>>
The resulting type after applying the +
operator.
fn add(self, _: TArr<Vr, Ar>) -> Self::Output
[src]
fn add(self, _: TArr<Vr, Ar>) -> Self::Output
Performs the +
operation.
impl<Vl, Al, Vr, Ar> Sub<TArr<Vr, Ar>> for TArr<Vl, Al> where
Vl: Sub<Vr>,
Al: Sub<Ar>,
[src]
impl<Vl, Al, Vr, Ar> Sub<TArr<Vr, Ar>> for TArr<Vl, Al> where
Vl: Sub<Vr>,
Al: Sub<Ar>,
type Output = TArr<Diff<Vl, Vr>, Diff<Al, Ar>>
The resulting type after applying the -
operator.
fn sub(self, _: TArr<Vr, Ar>) -> Self::Output
[src]
fn sub(self, _: TArr<Vr, Ar>) -> Self::Output
Performs the -
operation.
impl<V, A, Rhs> Mul<Rhs> for TArr<V, A> where
V: Mul<Rhs>,
A: Mul<Rhs>,
[src]
impl<V, A, Rhs> Mul<Rhs> for TArr<V, A> where
V: Mul<Rhs>,
A: Mul<Rhs>,
type Output = TArr<Prod<V, Rhs>, Prod<A, Rhs>>
The resulting type after applying the *
operator.
fn mul(self, _: Rhs) -> Self::Output
[src]
fn mul(self, _: Rhs) -> Self::Output
Performs the *
operation.
impl<V, A> Mul<TArr<V, A>> for Z0 where
Z0: Mul<A>,
[src]
impl<V, A> Mul<TArr<V, A>> for Z0 where
Z0: Mul<A>,
type Output = TArr<Z0, Prod<Z0, A>>
The resulting type after applying the *
operator.
fn mul(self, _: TArr<V, A>) -> Self::Output
[src]
fn mul(self, _: TArr<V, A>) -> Self::Output
Performs the *
operation.
impl<V, A, U> Mul<TArr<V, A>> for PInt<U> where
U: Unsigned + NonZero,
PInt<U>: Mul<A> + Mul<V>,
[src]
impl<V, A, U> Mul<TArr<V, A>> for PInt<U> where
U: Unsigned + NonZero,
PInt<U>: Mul<A> + Mul<V>,
type Output = TArr<Prod<PInt<U>, V>, Prod<PInt<U>, A>>
The resulting type after applying the *
operator.
fn mul(self, _: TArr<V, A>) -> Self::Output
[src]
fn mul(self, _: TArr<V, A>) -> Self::Output
Performs the *
operation.
impl<V, A, U> Mul<TArr<V, A>> for NInt<U> where
U: Unsigned + NonZero,
NInt<U>: Mul<A> + Mul<V>,
[src]
impl<V, A, U> Mul<TArr<V, A>> for NInt<U> where
U: Unsigned + NonZero,
NInt<U>: Mul<A> + Mul<V>,
type Output = TArr<Prod<NInt<U>, V>, Prod<NInt<U>, A>>
The resulting type after applying the *
operator.
fn mul(self, _: TArr<V, A>) -> Self::Output
[src]
fn mul(self, _: TArr<V, A>) -> Self::Output
Performs the *
operation.
impl<V, A> Neg for TArr<V, A> where
V: Neg,
A: Neg,
[src]
impl<V, A> Neg for TArr<V, A> where
V: Neg,
A: Neg,
type Output = TArr<Negate<V>, Negate<A>>
The resulting type after applying the -
operator.
fn neg(self) -> Self::Output
[src]
fn neg(self) -> Self::Output
Performs the unary -
operation.
impl<V: Hash, A: Hash> Hash for TArr<V, A>
[src]
impl<V: Hash, A: Hash> Hash for TArr<V, A>
fn hash<__HVA: Hasher>(&self, state: &mut __HVA)
[src]
fn hash<__HVA: Hasher>(&self, state: &mut __HVA)
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl<V: Copy, A: Copy> Copy for TArr<V, A>
[src]
impl<V: Copy, A: Copy> Copy for TArr<V, A>
impl<V: Clone, A: Clone> Clone for TArr<V, A>
[src]
impl<V: Clone, A: Clone> Clone for TArr<V, A>
Auto Trait Implementations
impl<V, A> Send for TArr<V, A> where
A: Send,
V: Send,
impl<V, A> Send for TArr<V, A> where
A: Send,
V: Send,
impl<V, A> Sync for TArr<V, A> where
A: Sync,
V: Sync,
impl<V, A> Sync for TArr<V, A> where
A: Sync,
V: Sync,
Blanket Implementations
impl<T> Same for T
[src]
impl<T> Same for T
type Output = T
Should always be Self
impl<M, N> PartialDiv for M where
M: Integer + Div<N> + Rem<N, Output = Z0>,
[src]
impl<M, N> PartialDiv for M where
M: Integer + Div<N> + Rem<N, Output = Z0>,
type Output = <M as Div<N>>::Output
The type of the result of the division
fn partial_div(Self, N) -> <M as PartialDiv<N>>::Output
[src]
fn partial_div(Self, N) -> <M as PartialDiv<N>>::Output
Method for performing the division
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
try_from
)Performs the conversion.
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more