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
#[doc(hidden)]
#[macro_export]
macro_rules! _parse_unary_op {
    (-, $($t:tt)+) => (_impl_unary_op_internal!(Neg, neg, $($t)+););
    (!, $($t:tt)+) => (_impl_unary_op_internal!(Not, not, $($t)+););
}

#[doc(hidden)]
#[macro_export]
macro_rules! _impl_unary_op_internal {
    ($ops_trait:ident, $ops_fn:ident, &$lhs:ty, $out:ty, $lhs_i:ident, $body:block) => (        
        impl<'a> ops::$ops_trait for &'a $lhs {
            type Output = $out;

            fn $ops_fn(self) -> Self::Output {
                let $lhs_i = self;
                $body
            }
        }
    );
    ($ops_trait:ident, $ops_fn:ident, $lhs:ty, $out:ty, $lhs_i:ident, $body:block) => (        
        impl ops::$ops_trait for $lhs {
            type Output = $out;

            fn $ops_fn(self) -> Self::Output {
                let $lhs_i = self;
                $body
            }
        }
    );
}