[−][src]Trait std::slice::SliceConcat
Helper trait for [T]::concat
and [T]::join
Associated Types
Loading content...Required methods
fn concat(slice: &[Self]) -> Self::Output
Implementation of [T]::concat
fn join(slice: &[Self], sep: &Separator) -> Self::Output
Implementation of [T]::join
Implementors
impl<S> SliceConcat<str> for S where
S: Borrow<str>, [src]
S: Borrow<str>,
type Output = String
fn concat(slice: &[S]) -> String[src]
fn join(slice: &[S], sep: &str) -> String[src]
impl<T, V> SliceConcat<T> for V where
T: Clone,
V: Borrow<[T]>, [src]
T: Clone,
V: Borrow<[T]>,