Trait generic_array::sequence::Concat [−][src]
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 GenericSequence
s which can be joined together, forming a larger array.
Associated Types
type Rest: GenericSequence<T, Length = M>
[src]
type Rest: GenericSequence<T, Length = M>
[src]Sequence to be concatenated with self
type Output: GenericSequence<T>
[src]
type Output: GenericSequence<T>
[src]Resulting sequence formed by the concatenation.