audio-core 0.2.1

The core audio traits
Documentation
1
2
3
4
5
6
7
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];
}