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