pp-audiograph 0.2.0

Realtime audio processing graph library
Documentation
1
2
3
/// A floating-point sample type that can be used for audio processing
pub trait Sample: num::Float + Default + std::ops::Add + std::ops::AddAssign {}
impl<T> Sample for T where T: num::Float + Default + std::ops::Add + std::ops::AddAssign {}