Trait rustfft::IsInverse[][src]

pub trait IsInverse {
    fn is_inverse(&self) -> bool;
}

A trait that allows FFT algorithms to report whether they compute forward FFTs or inverse FFTs

Required Methods

Returns false if this instance computes forward FFTs, true for inverse FFTs

Implementors