macro_loop 0.4.3

A macro for writing repetitive Rust code using loops, conditionals, and bindings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use super::{expr::*, name::*, value::*, *};

mod fragment;
mod fragment_concat;
mod fragment_expr;
mod fragment_for;
mod fragment_if;
mod fragment_let;
mod fragment_name;
pub use fragment::*;
pub use fragment_concat::*;
pub use fragment_expr::*;
pub use fragment_for::*;
pub use fragment_if::*;
pub use fragment_let::*;
pub use fragment_name::*;