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
#[macro_use]
mod impl_for;

#[macro_use]
mod option_op;

#[macro_use]
mod option_op_assign;

#[macro_use]
mod option_op_checked;

#[macro_use]
mod option_op_overflowing;

#[macro_use]
mod option_op_saturating;

#[macro_use]
mod option_op_wrapping;

macro_rules! common_option_op {
    ($trait:ident, $op:ident, $op_name:ident $(, $extra_doc:expr)? $(,)?) => {
        paste::paste! {
            option_op!(
                $trait,
                $op,
                $op_name,
                $($extra_doc)?
            );

            option_op_assign!(
                $trait,
                $op,
                $op_name,
                $($extra_doc)?
            );

            option_op_overflowing!(
                $trait,
                $op,
                $op_name,
                $($extra_doc)?
            );

            option_op_wrapping!(
                $trait,
                $op,
                $op_name,
                $($extra_doc)?
            );
        }
    };
}