Macro hsh::hsh_join

source ·
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");