2 stable releases
1.0.2 | Jun 4, 2020 |
---|
#1690 in Rust patterns
72 downloads per month
4KB
concat_strs
Provides the concat_strs!
macro, which allows quickly building a String
from a number of components.
Example usage:
use concat_strs::concat_strs;
assert_eq!(
"foo_bar_3.0",
concat_strs!(
"foo",
'_',
"bar",
'_',
3.0,
)
);
Dependencies
~1.5MB
~35K SLoC