macro_rules! hsh_join {
($sep:expr, $($s:expr),*) => { ... };
}
Expand description
This macro joins the given strings together with the given separator.
ยงExample
extern crate hsh;
use hsh::{ hsh_join };
let joined = hsh_join!(", ", "Hello", "world");