devela/num/quant/mod.rs
1// devela::num::quant
2//
3//! Quantification and periodicity.
4//!
5//! This module provides general concepts for measuring and quantifying values,
6//! including both discrete and continuous representations, without being tied
7//! to specific interpretations.
8//
9
10mod cycle; // Ćycle, CycleCount
11mod interval; // Interval
12
13crate::items! { // structural access: _mods, _all
14 #[allow(unused)]
15 pub use _mods::*;
16
17 mod _mods {
18 pub use super::{cycle::*, interval::*};
19 // WIPZONE
20 // pub use super::counter::*;
21 // pub use super::scale::*;
22 }
23 pub(super) mod _all {
24 #[doc(inline)]
25 pub use super::_mods::*;
26 }
27}
28// WIPZONE
29// mod counter;
30// mod scale;