pub struct TArr<V, A> { /* private fields */ }
Expand description
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
sourceimpl<V, A> Len for TArr<V, A>where
A: Len,
Length<A>: Add<B1>,
Sum<Length<A>, B1>: Unsigned,
impl<V, A> Len for TArr<V, A>where
A: Len,
Length<A>: Add<B1>,
Sum<Length<A>, B1>: Unsigned,
Size of a TypeArray
sourceimpl<V, A, U> Mul<TArr<V, A>> for NInt<U>where
U: Unsigned + NonZero,
NInt<U>: Mul<A> + Mul<V>,
impl<V, A, U> Mul<TArr<V, A>> for NInt<U>where
U: Unsigned + NonZero,
NInt<U>: Mul<A> + Mul<V>,
sourceimpl<V, A, U> Mul<TArr<V, A>> for PInt<U>where
U: Unsigned + NonZero,
PInt<U>: Mul<A> + Mul<V>,
impl<V, A, U> Mul<TArr<V, A>> for PInt<U>where
U: Unsigned + NonZero,
PInt<U>: Mul<A> + Mul<V>,
sourceimpl<V: Ord, A: Ord> Ord for TArr<V, A>
impl<V: Ord, A: Ord> Ord for TArr<V, A>
1.21.0 · sourceconst fn max(self, other: Self) -> Self
const fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourceconst fn min(self, other: Self) -> Self
const fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourceconst fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
const fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl<V, A, Rhs> PartialDiv<Rhs> for TArr<V, A>where
V: PartialDiv<Rhs>,
A: PartialDiv<Rhs>,
Rhs: Copy,
impl<V, A, Rhs> PartialDiv<Rhs> for TArr<V, A>where
V: PartialDiv<Rhs>,
A: PartialDiv<Rhs>,
Rhs: Copy,
type Output = TArr<<V as PartialDiv<Rhs>>::Output, <A as PartialDiv<Rhs>>::Output>
type Output = TArr<<V as PartialDiv<Rhs>>::Output, <A as PartialDiv<Rhs>>::Output>
The type of the result of the division
sourcefn partial_div(self, rhs: Rhs) -> Self::Output
fn partial_div(self, rhs: Rhs) -> Self::Output
Method for performing the division
sourceimpl<V: PartialEq, A: PartialEq> PartialEq<TArr<V, A>> for TArr<V, A>
impl<V: PartialEq, A: PartialEq> PartialEq<TArr<V, A>> for TArr<V, A>
sourceimpl<V: PartialOrd, A: PartialOrd> PartialOrd<TArr<V, A>> for TArr<V, A>
impl<V: PartialOrd, A: PartialOrd> PartialOrd<TArr<V, A>> for TArr<V, A>
sourcefn partial_cmp(&self, other: &TArr<V, A>) -> Option<Ordering>
fn partial_cmp(&self, other: &TArr<V, A>) -> Option<Ordering>
1.0.0 · sourceconst fn le(&self, other: &Rhs) -> bool
const 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 moreimpl<V: Copy, A: Copy> Copy for TArr<V, A>
impl<V: Eq, A: Eq> Eq for TArr<V, A>
impl<V, A> StructuralEq for TArr<V, A>
impl<V, A> StructuralPartialEq for TArr<V, A>
impl<V, A> TypeArray for TArr<V, A>
Auto Trait Implementations
impl<V, A> RefUnwindSafe for TArr<V, A>where
A: RefUnwindSafe,
V: RefUnwindSafe,
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> Unpin for TArr<V, A>where
A: Unpin,
V: Unpin,
impl<V, A> UnwindSafe for TArr<V, A>where
A: UnwindSafe,
V: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more