affix-macro 1.0.0

Macros for affixing tokens to groups of other tokens.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# `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;
	}
}
```