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
#![cfg_attr(rustfmt, rustfmt_skip)]
#[macro_export]
#[doc(hidden)]
macro_rules! static_cond {
(@go $lhs:tt $rhs:tt $arm1:tt $arm2:tt) => {
macro_rules! __static_cond {
($lhs $lhs) => $arm1;
($lhs $rhs) => $arm2
}
__static_cond!($lhs $rhs);
};
(if $lhs:tt == $rhs:tt $then:tt) => {
static_cond!(if $lhs == $rhs $then else { });
};
(if $lhs:tt != $rhs:tt $then:tt) => {
static_cond!(if $lhs != $rhs $then else { });
};
(if $lhs:tt == $rhs:tt $then:tt else $els:tt) => {
static_cond!(@go $lhs $rhs $then $els);
};
(if $lhs:tt != $rhs:tt $then:tt else $els:tt) => {
static_cond!(@go $lhs $rhs $els $then);
};
}