rstmt_core/compose/mod.rs
1/*
2 Appellation: comp <module>
3 Created At: 2025.12.29:16:45:11
4 Contrib: @FL03
5*/
6//! composition related implementations, primitives, and utilities for creating music with the
7//! framework.
8//!
9#[doc(inline)]
10pub use self::scale::*;
11
12pub mod scale;
13
14mod impls {
15 mod impl_scale;
16 mod impl_scale_repr;
17}
18
19#[doc(hidden)]
20pub(crate) mod prelude {
21 pub use super::scale::*;
22}