concat_strs 1.0.2

Macro for quickly building a String from components.
Documentation
1
2
3
4
5
6
7
use concat_strs::concat_strs;

#[test]
fn simple() {
    let s = concat_strs!["abc", "def", 'c', "h"];
    assert_eq!("abcdefch", &s);
}