devela/num/frac/
mod.rs

1// devela::num::frac
2//
3//! Fractional functionality.
4//
5
6// mod r#trait; // TODO
7
8#[cfg(_int··)]
9mod wrapper;
10
11crate::items! { // structural access: _mods, _all
12    #[allow(unused)]
13    pub use _mods::*;
14
15    mod _mods {
16        #[cfg(_int··)]
17        pub use super::wrapper::*;
18    }
19    pub(super) mod _all {
20        #[doc(inline)]
21        #[allow(unused, reason = "feature-gated")]
22        pub use super::_mods::*;
23    }
24}