pub fn concat_with_file_separator_build<S1: Into<String>, S2: AsRef<str>>(
s1: S1,
s2: S2
) -> String
Expand description
Concatenate two strings with FILE_SEPARATOR_ON_WORKSTATION
.
assert_eq!(
concat!("path", slash_formatter::file_separator_build!(), "to"),
slash_formatter::concat_with_file_separator_build(
"path",
concat!("to", slash_formatter::file_separator_build!())
)
);