devela/phys/wave/
mod.rs

1// devela::phys::wave
2//
3//! Wavelets.
4//
5
6#[cfg(test)]
7mod tests;
8
9mod shared; // WaveletHaar, WaveletUnitRole
10
11#[cfg(feature = "alloc")]
12#[cfg(any(feature = "std", feature = "_float_f64"))] // NOTE: not documented
13#[cfg_attr(feature = "nightly_doc", doc(cfg(feature = "alloc")))]
14mod alloc;
15
16crate::items! { // structural access: _mods, _all
17    #[allow(unused)]
18    pub use _mods::*;
19
20    mod _mods {
21        pub use super::shared::*;
22
23        #[cfg(feature = "alloc")]
24        #[cfg(any(feature = "std", feature = "_float_f64"))]
25        pub use super::alloc::*;
26    }
27    pub(super) mod _all {
28        #[doc(inline)]
29        pub use super::_mods::*;
30    }
31}