Trait cpp_to_rust_common::string_utils::JoinWithSeparator [] [src]

pub trait JoinWithSeparator<S> {
    type Output;
    fn join(self, separator: S) -> Self::Output;
}

Join items of a collection with separator.

Associated Types

Result type of the operation

Required Methods

Join items of self with separator.

Implementors