Trait collections::str::StrVector[src]

pub trait StrVector {
    fn concat(&self) -> String;
    fn connect(&self, sep: &str) -> String;
}

Methods for vectors of strings

Required Methods

fn concat(&self) -> String

Concatenate a vector of strings.

fn connect(&self, sep: &str) -> String

Concatenate a vector of strings, placing a given separator between each.

Implementors