devela/num/int/wrapper/mod.rs
1// devela::num::int::wrapper
2//
3//! Integer wrapper struct.
4//
5
6mod namespace; // Int
7
8#[cfg(_int··)]
9crate::items! {
10 mod impl_base;
11 mod impl_combinatorics;
12 mod impl_core;
13 mod impl_div;
14 mod impl_factors;
15 mod impl_modulo;
16 mod impl_prime;
17 mod impl_root;
18
19 // WIPZONE
20 // mod impl_stats;
21}
22
23crate::items! { // structural access: _mods, _all
24 #[allow(unused)]
25 pub use _mods::*;
26
27 mod _mods {
28 pub use super::namespace::*;
29 }
30 pub(super) mod _all {
31 #[doc(inline)]
32 pub use super::_mods::*;
33 }
34}