func (p *Plan) Destroy() { C.fftw_destroy_plan(p.fftw_p) }
// Destroy the plan func (p *Plan) Destroy() { p.Lock() defer p.Unlock() C.fftw_destroy_plan(p.fftwP) }
func destroyPlan(p *Plan) { C.fftw_destroy_plan(p.fftw_p) }