Trait std::slice::Join
pub trait Join<Separator> {
type Output;
fn join(slice: &Self, sep: Separator) -> Self::Output;
}
Helper trait for [T]::join
Associated Types
type Output
The resulting type after concatenation
Required methods
Implementors
type Output = String
type Output = Vec<T, Global>
type Output = Vec<T, Global>
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/slice/trait.Join.html