compose-idents 0.3.0

A Rust macro for generating new identifiers (names of variables, functions, traits, etc) by concatenating one or more arbitrary parts and applying other manipulations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Tests for calls of built-in functions.
mod camel_case;
mod concat;
mod hash;
mod lower;
mod normalize;
mod normalize2;
mod pascal_case;
mod raw;
mod snake_case;
mod to_expr;
mod to_ident;
mod to_int;
mod to_path;
mod to_str;
mod to_tokens;
mod to_type;
mod upper;