1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//! Music transformation layer for the SIM music constellation.
//!
//! This crate applies transformations to musical material: classic operations
//! such as transpose, invert, retrograde, augment, and diminish; exact
//! identity-preserving staff operations for sustain, slur, expansion,
//! delayed-note voice separation, register unwrapping, slicing, composition,
//! and rhythm masks; configurable pitch and time remaps; pattern mutators; and
//! a capability-gated custom event filter pipeline. Every exact staff operation
//! returns a [`MusicTransform`] with stable identities and explicit edits.
//! General object transforms return new `Music`, optionally paired with
//! diagnostics in a [`TransformReport`].
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
/// Cookbook recipes for this lib, embedded at build time.
pub static RECIPES: EmbeddedDir =
include!;