1// rill-fft/src/effects/mod.rs
2//! Frequency-domain effects built on real FFT.
3//!
4//! These effects transform the signal into the frequency domain via
5//! overlap-add processing, manipulate the spectrum, then transform back.
67pub mod spectral_delay;
8pub mod spectral_gate;