2 stable releases
| 1.0.2 | Jun 4, 2020 |
|---|
#5 in #macro-for-building
70 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
~39K SLoC