Trait surge_modulation::imports::imports::SincTablePtr[]

pub trait SincTablePtr {
    fn _sinctable_ptr(&self, idx: usize) -> *const f32;

    fn sinctable_ptr<T>(&self, idx: T) -> *const f32
    where
        T: TryInto<usize>,
        <T as TryInto<usize>>::Error: Debug
, { ... } }

Required methods

Provided methods

Implementors