Trait surge_traits::ProcessRingout[][src]

pub trait ProcessRingout: Process + ProcessOnlyControl + GetRingout + SetRingout {
    unsafe fn process_ringout<const N: usize>(
        &mut self,
        data_l: *mut f32,
        data_r: *mut f32,
        indata_present: bool
    ) -> OutputDataPresent { ... } }

Provided methods

Safety

must be able to access N valid contiguous items from data_l and data_r

Implementors