audio 0.2.1

A crate for working with audio in Rust
Documentation
1
2
3
4
5
6
7
8
9
//! A dynamically sized, multi-channel sequential audio buffer.

mod iter;
pub use self::iter::{IterChannels, IterChannelsMut};

#[cfg(feature = "std")]
mod buf;
#[cfg(feature = "std")]
pub use self::buf::Sequential;