audio-core 0.2.0-alpha.4

The core audio traits
Documentation
use crate::ChannelMut;

/// Trait for linear mutable channels.
pub trait LinearChannelMut: ChannelMut {
    /// Access the linear channel mutably.
    fn as_linear_channel_mut(&mut self) -> &mut [Self::Sample];
}