pub unsafe trait Concat<T, M>: GenericSequence<T> where
    M: ArrayLength<T>, 
{ type Rest: GenericSequence<T, Length = M>; type Output: GenericSequence<T>; fn concat(self, rest: Self::Rest) -> Self::Output; }
Expand description

Defines GenericSequences which can be joined together, forming a larger array.

Required Associated Types

Sequence to be concatenated with self

Resulting sequence formed by the concatenation.

Required Methods

Concatenate, or join, two sequences.

Implementors