1/*
2 Appellation: concat <module>
3 Contrib: @FL03
4*/
56/// this trait defines a common method for concatenating two entities into some new type.
7pub trait Concat<Rhs = Self> {
8type Output;
9/// Concatenate two slices into a new vector.
10fn concat(&self, other: Rhs) -> Self::Output;
11}