Trait generic_array::sequence::Concat
source ·
[−]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>
type Rest: GenericSequence<T, Length = M>
Sequence to be concatenated with self
type Output: GenericSequence<T>
type Output: GenericSequence<T>
Resulting sequence formed by the concatenation.