Various macros to prefix, suffix, and circumfix tokens in Rust.
See the documentation for usage instructions and examples.
use ::affix_macro::prefix_items;
prefix_items! {
( #[cfg(feature = "alloc")] )
{
extern crate alloc;
use alloc::string::String;
}
}