Crates.io | concat-strs-derive |
lib.rs | concat-strs-derive |
version | 0.1.20241101 |
source | src |
created_at | 2024-09-16 11:29:38.455558 |
updated_at | 2024-11-01 04:16:14.585158 |
description | Forked from Rebecca Turner |
homepage | |
repository | https://github.com/raul-gherman/concat_strs |
max_upload_size | |
id | 1376245 |
size | 41,261 |
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,
)
);