dmutil/
lib.rs

1//!
2//! A collection of macros to ease the creation of other macros.
3//!
4
5#[macro_use]
6mod eager_macro_rules;
7#[macro_use]
8mod reverse;
9#[macro_use]
10mod eager;
11
12