devela/phys/wave/
mod.rs
1#[cfg(test)]
7mod tests;
8
9mod shared; #[cfg(feature = "alloc")]
12#[cfg(any(feature = "std", feature = "_float_f64"))] #[cfg_attr(feature = "nightly_doc", doc(cfg(feature = "alloc")))]
14mod alloc;
15
16crate::items! { #[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}