1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
//! # Typed macros
//! A traditional macro can't natively have arguments with type, they can only
//! accept a handful of meta types (`expr`, `ident`, `vis`...), with this crate
//! you can explicitely say the type of the argument you want the macro to take.
//!
//! ## Example
//!
//! ```rust
//! use typed_macros::macrox;
//!
//! macrox! {
//! /// You can even use attributes!
//! #[macro_export]
//! macro foo(bar: String) {
//! // Do something with bar...
//! }
//! }
//!
//! fn main() {
//! foo!(String::from("Some string")) // <- This won't throw an error.
//! // foo!(9u32) // <- This will throw an error.
//! }
//! ```
//!
//! The main macro is [`macrox`][macrox], it takes an input like `macro
//! name(arg1: type1, arg2: type2) { /* Code */ }`, both the [`macrox`][macrox]
//!
//! [macrox]: macro.macrox.html
/// # Macrox
///
/// The main crate's macro, it takes a custom-syntax macro declaration. (`macro
/// name(arg1: type1, arg2: type2 /* ... */) { /* Body */}`)
///
/// ## Example
///
/// ```rust
/// use typed_macros::macrox;
///
/// macrox! {
/// #[macro_export]
/// macro macro_name(arg: String) {
/// // Do something with arg.
/// }
/// }
///
/// fn main() {
/// // You can use the macro wherever you want.
/// macro_name!(String::from("Hi"));
/// }
/// ```
///
/// You can declare various macros inside `macrox!`, and they can have
/// attributes.
///
/// ## Single-branched and Multi-branched macros
///
/// With this macro you can write both single-branched and multi-branched
/// macros, and both are really easy!
///
/// ### Single-branched macros
///
/// These are macros like the one in the example, with just one possible branch.
///
/// ### Multi-branched macros
///
/// These are a little bit more complicated, they use identifiers both
/// distinguishing what branch you're trying to use.
///
/// An identifier is anything that starts with '@', e. g. `@a`
/// Also, between the two branches there must be a ';'
/// #### Example
///
/// ```rust
/// use typed_macros::macrox;
///
/// macrox! {
/// #[macro_export]
/// macro my_macro(@a x: String) {
/// // Do something with x being a String
/// };
///
/// (@b x: u32) {
/// // Do something with x being a u32
/// }
/// }
///
/// fn main() {
/// my_macro!(@a String::from("hi!"));
/// my_macro!(@b 5_u32);
/// }
/// ```
)*
};
// Multibranch with identifiers
=> ;
}