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
//! Implements the expand-phase logic that expands high-level syntactic constructs into simpler
//! ones.
mod core;
pub use core::*;

mod raw_ast;