rstmt-core 0.1.0

the core modules for the rstmt framework
Documentation
/*
    Appellation: chord <module>
    Created At: 2025.12.24:14:33:29
    Contrib: @FL03
*/
//! this module defines the chord-related implementations, interfaces, and more in an effort
//! to generalize their behavior across various representations.
//!
#[doc(inline)]
pub use self::{chord_base::*, traits::*};

mod chord_base;

mod impls {
    mod impl_chord_base;
}

mod traits {
    #[doc(inline)]
    pub use self::raw_chord::*;

    mod raw_chord;
}
// prelude (local)
#[doc(hidden)]
pub(crate) mod prelude {
    pub use super::chord_base::*;
    pub use super::traits::*;
}