devela/num/int/wrapper/
mod.rs

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
// devela::num::int::wrapper
//
//! Integer wrapper struct.
//

mod namespace; // Int

#[cfg(_int··)]
crate::items! {
    mod impl_base;
    mod impl_combinatorics;
    mod impl_core;
    mod impl_div;
    mod impl_factors;
    mod impl_modulo;
    mod impl_prime;
    mod impl_root;
}

crate::items! { // structural access: _mods, _all
    #[allow(unused)]
    pub use _mods::*;

    mod _mods {
        pub use super::namespace::*;
    }
    pub(super) mod _all {
        #[doc(inline)]
        pub use super::_mods::*;
    }
}