| Crates.io | affix-macro |
| lib.rs | affix-macro |
| version | 1.0.0 |
| created_at | 2025-12-02 22:01:29.724102+00 |
| updated_at | 2025-12-02 22:01:29.724102+00 |
| description | Macros for affixing tokens to groups of other tokens. |
| homepage | |
| repository | https://www.github.com/aseminaunz/affix-macro |
| max_upload_size | |
| id | 1962757 |
| size | 12,377 |
affix-macroVarious 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;
}
}