1 unstable release
0.1.6 | Nov 26, 2021 |
---|---|
0.1.5 |
|
#1383 in Procedural macros
5KB
Charify
A simple proc macro to turn its token input into a char, similar to the built-in stringify! macro.
Examples
println!("Hell{}, w{}rld!", charify!(o), charify!(o));
Result: "Hello, world!"
println!("What{} Outrageous{}", charify!(?), charify!(!))
Result: "What? Outrageous!"
Known issues
Somehow, the proc macro causes a strange issue that reports "range end index 4 out of range for slice of length 3". I have no idea what this is referring to, and it's not a true compile error, as it compiles and runs fine. It appears that only rust-analyzer has a problem. If this is something I can fix, please let me know (open an issue on github) and I will fix it, but as it stands I think this is just a bug in rust-analyzer.
lib.rs
:
Charify
A simple proc macro to turn its token input into a char, similar to the built-in stringify! macro.
Examples
println!("Hell{}, w{}rld!", charify!(o), charify!(o));
Result: "Hello, world!"
println!("What{} Outrageous{}", charify!(?), charify!(!))
Result: "What? Outrageous!"
Known issues
Somehow, the proc macro causes a strange issue that reports "range end index 4 out of range for slice of length 3". I have no idea what this is referring to, and it's not a true compile error, as it compiles and runs fine. It appears that only rust-analyzer has a problem. If this is something I can fix, please let me know (open an issue on github) and I will fix it, but as it stands I think this is just a bug in rust-analyzer.