devela 0.28.0

A development substrate of coherence.
Documentation
// devela::num::grain::cast
//
//! Helpers for converting between primitives.
//

mod macros; // cast!
mod namespace; // Cast
mod traits; // PrimCast, PrimJoin, PrimSplit

#[cfg(test)]
mod tests;

crate::structural_mods! { // _mods
    _mods {
        #[doc(inline)]
        pub use super::{
            macros::cast,
            namespace::Cast,
            traits::_all::*,
        };
    }
}