| Crates.io | casey |
| lib.rs | casey |
| version | 0.4.2 |
| created_at | 2019-05-01 05:51:27.584072+00 |
| updated_at | 2024-12-28 03:11:00.683235+00 |
| description | Case transforming macros for ident tokens |
| homepage | |
| repository | https://github.com/jordy25519/casey |
| max_upload_size | |
| id | 131312 |
| size | 15,082 |
Case transforming macros
Casey transforms the case of given input idents.
Niche but maybe useful in other macros.
use casey::{pascal, lower, shouty, snake, upper};
lower!(ABC); // renders: `abc`
upper!(abc); // `ABC`
snake!(ABC); // `a_b_c`
pascal!(ab_c); // `AbC`
shouty!(a_b_c); // `A_B_C`
Casey macros can operate on TokenStreams e.g.
snake!(
#[derive(PartialEq)]
struct MockStruct {}
impl MockStruct {
fn test() -> bool { true }
}
);
assert!(mock_struct::test());
assert!(mock_struct::test() == mock_struct::test())
All ident tokens in the stream will have the case transformation applied (keywords and attribute macros will be ignored).
Type names, including built-in types are not considered keywords e.g. bool, usize, i32 etc. and will be transformed by casey.
pascal!(let test: bool = true); // renders: `let Test: Bool = true;`