Struct typenum::array::TArr [] [src]

pub struct TArr<V, A> { /* fields omitted */ }

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: Eq, A: Eq> Eq for TArr<V, A>
[src]

impl<V: PartialEq, A: PartialEq> PartialEq for TArr<V, A>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<V: Ord, A: Ord> Ord for TArr<V, A>
[src]

This method returns an Ordering between self and other. Read more

impl<V: PartialOrd, A: PartialOrd> PartialOrd for TArr<V, A>
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<V: Clone, A: Clone> Clone for TArr<V, A>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<V: Copy, A: Copy> Copy for TArr<V, A>
[src]

impl<V: Hash, A: Hash> Hash for TArr<V, A>
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl<V: Debug, A: Debug> Debug for TArr<V, A>
[src]

Formats the value using the given formatter.

impl<V, A> TypeArray for TArr<V, A>
[src]

impl<V, A> Len for TArr<V, A> where A: Len, Length<A>: Add<B1>, Sum<Length<A>, B1>: Unsigned
[src]

Size of a TypeArray

The length as a type-level unsigned integer.

This function isn't used in this crate, but may be useful for others.

impl<Al, Vl, Ar, Vr> Add<TArr<Vr, Ar>> for TArr<Vl, Al> where Al: Add<Ar>, Vl: Add<Vr>
[src]

The resulting type after applying the + operator

The method for the + operator

impl<Vl, Al, Vr, Ar> Sub<TArr<Vr, Ar>> for TArr<Vl, Al> where Vl: Sub<Vr>, Al: Sub<Ar>
[src]

The resulting type after applying the - operator

The method for the - operator

impl<V, A, Rhs> Mul<Rhs> for TArr<V, A> where V: Mul<Rhs>, A: Mul<Rhs>
[src]

The resulting type after applying the * operator

The method for the * operator

impl<V, A, Rhs> Div<Rhs> for TArr<V, A> where V: Div<Rhs>, A: Div<Rhs>
[src]

The resulting type after applying the / operator

The method for the / operator

impl<V, A> Neg for TArr<V, A> where V: Neg, A: Neg
[src]

The resulting type after applying the - operator

The method for the unary - operator