11 releases
0.1.20241101 | Nov 1, 2024 |
---|---|
0.1.20241024 | Oct 24, 2024 |
0.1.20240924 | Sep 24, 2024 |
#1878 in Procedural macros
739 downloads per month
Used in 2 crates
15KB
125 lines
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
~245–690KB
~17K SLoC