devela 0.26.0

A development layer of coherence.
Documentation
// devela::num::quant
//
#![doc = crate::_DOC_NUM_QUANT!()] // public
#![doc = crate::_doc!(modules: crate::num; quant)]
#![doc = crate::_doc!(flat:"num")]
#![doc = crate::_doc!(hr)]
//!
//! This module provides general concepts for measuring and quantifying values,
//! including both discrete and continuous representations, without being tied
//! to specific interpretations.
//!
//! More specifically it defines foundational types for:
//! - Periodic phenomena [`Cycle`], [`CycleCount`].
//! - Range and interval mathematics: [`Interval`], [`interval!`].
//! - Proportional relationships and ratios: [`Ratio`].
// - Scaling transformations: [`Scale`].
//! - Numerical classification and properties: [`Sign`].
// - Discrete counting and increments: [`Count`].
//

// mod cont; //
mod ratio; // Ratio

crate::structural_mods! { // _mods, _reexports
    _mods {
        pub use super::{
            // cont::_all::*,
            ratio::*,
        };
    }
    _reexports {
        #[doc(inline)]
        #[rustfmt::skip]
        pub use devela_base_core::num::quant::{
            Cycle, CycleCount,
            Interval, interval,
            Sign,
            ValueQuant,
        };
    }
}