rotary 0.29.0-alpha.2

A library for working with audio buffers
Documentation
//! Reading and writing sequentially from buffers.
//!
//! This is called buffered I/O, and allow buffers to support sequential reading
//! and writing to and from buffer.
//!
//! The primary traits that govern this is [ReadBuf] and [WriteBuf].

pub use rotary_core::{ReadBuf, WriteBuf};

mod utils;
pub use self::utils::{copy_remaining, translate_remaining};

mod read;
pub use self::read::Read;

mod write;
pub use self::write::Write;

mod read_write;
pub use self::read_write::ReadWrite;