join_path_string

Macro join_path_string 

Source
macro_rules! join_path_string {
    ($($x:expr),*) => { ... };
}
Expand description

Join a path together from a list of string-like arguments.

ยงExample

let path = join_path_string!("a", "b", "c");
assert_eq!(path, "a/b/c"); // on Unix systems