join_to_string 0.1.0

Join a list of items to string/buffer.
Documentation

join

Build Status Crates.io API reference

Join a list of items to string:

let mut buf = String::new();
join(iterable)
    .sep(", ")
    .preifx("(")
    .suffix(")")
    .to_buf(&mut buf); // .to_string()