[src]

Trait std::str::StrVector

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

Methods for vectors of strings

Required Methods

fn concat(&self) -> ~str

Concatenate a vector of strings.

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

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

Implementors