pub fn fmt_iter_split_with<T: Display, I: Iterator<Item = T>>(
    i: I,
    splitter: &str
) -> String
Examples found in repository?
lib.rs (line 58)
57
58
59
60
61
62
63
pub fn fmt_vec_split_with<T: fmt::Display>(v: &[T], splitter: &str) -> String {
    fmt_iter_split_with(v.iter(), splitter)
}

pub fn fmt_set_split_with<T: fmt::Display + std::hash::Hash>(s: &Set<T>, splitter: &str) -> String {
    fmt_iter_split_with(s.iter(), splitter)
}