Trait surge_traits::CoefficientLoadStore[][src]

pub trait CoefficientLoadStore {
    fn load_coefficients(&mut self);
unsafe fn store_coefficients(
        &mut self,
        coefficient_a: *mut f64,
        coefficient_b: *mut f64
    ); }

Required methods

Safety

need to be able to safely access N contiguous elements from both a and b, however far your implementation reads

Implementors