Trait rustfft::Length

source ·
pub trait Length {
    fn len(&self) -> usize;
}
Expand description

A trait that allows FFT algorithms to report their expected input/output size

Required Methods

The FFT size that this algorithm can process

Implementors