Walter Smuts
Walter Smuts
Some of the methods that can `panic` doesn't provide good messages. See [this](https://doc.rust-lang.org/std/macro.assert_eq.html) and implement better messages on all `asserts`.
Again would require a major version bump. Just adding here as reminder until that happens. Commit 1: ``` Return a boxed slice instead of vector from make_* The number of...
Next time a major release is done I think it may be worth it to change the variants of [FftError](https://docs.rs/realfft/latest/realfft/enum.FftError.html) to named members. E.g. ``` FftError::InputBuffer(usize, usize) ``` can be...
The `Fft` trait requires scratch buffers to be initialised by defining their type as `&mut [Complex]`. This type carries an implicit requirement that the memory be initialised. Since the fft...
Unfortunately this requires an extra Default trait bound which results in requiring a major version change for fftconvolve. Practically it's not an issue since all elements that you'd want to...