pub trait Join<Separator> { type Output; fn join(slice: &Self, sep: Separator) -> Self::Output; }
slice_concat_trait
Helper trait for [T]::join
[T]::join
The resulting type after concatenation
Implementation of [T]::join