BiquadDelay.nextSample

Process a single sample through the biquad filter. This is rather inefficient, in general you'll prefer to use the nextBuffer functions.

  1. float nextSample(float input, const(BiquadCoeff) coeff)
  2. double nextSample(double input, const(BiquadCoeff) coeff)
    struct BiquadDelay
    nothrow @nogc
    static if(order == 2)
    double
    nextSample
    (
    double input
    ,)

Meta