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
//! Encapsulates the alias substitution and everything related to it.

mod format_string;
use format_string::*;
mod stream_visitor;
use stream_visitor::*;
mod substitute_idents;
use substitute_idents::*;
mod alias_substitution_visitor;

pub use alias_substitution_visitor::*;
#[cfg(test)]
mod test;