devela/num/frac/
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
// devela::num::frac
//
//! Fractional functionality.
//

// mod r#trait; // TODO

#[cfg(_int··)]
mod wrapper;

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

    mod _mods {
        #[cfg(_int··)]
        pub use super::wrapper::*;
    }
    pub(super) mod _all {
        #[doc(inline)]
        #[allow(unused, reason = "feature-gated")]
        pub use super::_mods::*;
    }
}