//! Use the Signal trait to abstract signal as infinite-iterator-like objects.
//!
//! This is based on [dasp-signal](https://github.com/RustAudio/dasp) except
//! this implementation supports `#[no_std]` on stable and is concerned only
//! about mono f32 frames.
pub use SignalClipAmp;
pub use constant;
pub use from_iter;
pub use SignalMulAmp;
pub use Signal;
pub use sine;
pub use SignalTake;
pub const EQUILIBRIUM: f32 = 0.0;