pub trait Join { // Required method fn join(&self, joiner: &'static str) -> String; }
Join vector of ToString capable things to a String with given delimiter.
use array_tool::vec::Join; vec![1,2,3].join(",");
"1,2,3"