gitextract_cc1mg2bt/ ├── .github/ │ └── workflows/ │ ├── CIWindows.yml │ ├── CompatHelper.yml │ ├── TagBot.yml │ ├── ci.yml │ ├── docs.yml │ └── downstream.yml ├── .gitignore ├── LICENSE.md ├── Project.toml ├── README.md ├── deps/ │ └── build.jl ├── docs/ │ ├── Project.toml │ ├── make.jl │ └── src/ │ ├── dev.md │ └── index.md ├── examples/ │ ├── annulus.jl │ ├── automaticdifferentiation.jl │ ├── chebyshev.jl │ ├── disk.jl │ ├── halfrange.jl │ ├── nonlocaldiffusion.jl │ ├── padua.jl │ ├── sphere.jl │ ├── sphericalisometries.jl │ ├── spinweighted.jl │ ├── subspaceangles.jl │ └── triangle.jl ├── src/ │ ├── FastTransforms.jl │ ├── GramMatrix.jl │ ├── PaduaTransform.jl │ ├── ToeplitzPlusHankel.jl │ ├── arrays.jl │ ├── chebyshevtransform.jl │ ├── clenshawcurtis.jl │ ├── docstrings.jl │ ├── elliptic.jl │ ├── fejer.jl │ ├── gaunt.jl │ ├── hermite.jl │ ├── inufft.jl │ ├── libfasttransforms.jl │ ├── nufft.jl │ ├── specialfunctions.jl │ ├── toeplitzhankel.jl │ └── toeplitzplans.jl └── test/ ├── arraystests.jl ├── chebyshevtests.jl ├── gaunttests.jl ├── grammatrixtests.jl ├── hermitetests.jl ├── libfasttransformstests.jl ├── nuffttests.jl ├── paduatests.jl ├── quadraturetests.jl ├── runtests.jl ├── specialfunctionstests.jl ├── toeplitzhankeltests.jl ├── toeplitzplanstests.jl └── toeplitzplushankeltests.jl