elemaudio_rs/authoring/
mod.rs

1//! Authoring surface for graph composition.
2//!
3//! This module provides three submodules for constructing Elementary-style
4//! audio graph nodes:
5//!
6//! - `el` – Functional helpers mirroring Elementary's `el.*` style with math,
7//!   signals, filters, and oscillators.
8//! - `mc` – Multichannel helpers for sample, table, and capture operations.
9//! - `extra` – Extended helpers for native DSP nodes (frequency shifter, crunch,
10//!   foldback, etc.).
11
12pub mod el;
13pub mod extra;
14pub mod mc;
15
16pub use el::IntoNodeList;