twang 0.9.0

Library for pure Rust advanced audio synthesis.
Documentation
// Copyright © 2018-2022 The Twang Contributors.
//
// Licensed under any of:
// - Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
// - Boost Software License, Version 1.0 (https://www.boost.org/LICENSE_1_0.txt)
// - MIT License (https://mit-license.org/)
// At your choosing (See accompanying files LICENSE_APACHE_2_0.txt,
// LICENSE_MIT.txt and LICENSE_BOOST_1_0.txt).

//! A collection of auditory effects.

mod clip;
mod far;
mod gain;
mod gate;
mod invert;
mod limiter;
mod max;
mod min;
mod near;
mod room;

pub use clip::Clip;
pub use far::Far;
pub use gain::Gain;
pub use gate::{Gate, GateParams};
pub use invert::Invert;
pub use limiter::Limiter;
pub use max::Max;
pub use min::Min;
pub use near::Near;
pub use room::Room;