Concatenates identifiers.
Find a file
2023-05-29 13:03:04 +02:00
src add recursion to replace! macro. 2023-05-29 13:03:04 +02:00
tests add recursion to replace! macro. 2023-05-29 13:03:04 +02:00
.gitignore Initial commit 2023-05-29 09:03:21 +02:00
Cargo.toml add recursion to replace! macro. 2023-05-29 13:03:04 +02:00
README.md remove no_std as proc_macro crates apparently dont need it 2023-05-29 12:38:52 +02:00

Concatenates identifiers.

Yet again, I am making a crate with the amount of code that is actually necessary: <50 SLOC, 0 dependencies.

use ident_concat::ident;
let ident!(a b) = 4;
assert_eq!(ab, ident!(a b));