/*
Appellation: concat <module>
Contrib: @FL03
*//// this trait defines a common method for concatenating two entities into some new type.
pubtraitConcat<Rhs = Self> {typeOutput;/// Concatenate two slices into a new vector.
fnconcat(&self, other: Rhs)->Self::Output;}