├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── README.md ├── Setup.hs ├── n-ary-functor.cabal ├── oldest-supported-lts.yaml ├── src └── NAryFunctor.hs ├── stack.yaml └── test └── doctests.hs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelisam/n-ary-functor/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelisam/n-ary-functor/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelisam/n-ary-functor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelisam/n-ary-functor/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelisam/n-ary-functor/HEAD/Setup.hs -------------------------------------------------------------------------------- /n-ary-functor.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelisam/n-ary-functor/HEAD/n-ary-functor.cabal -------------------------------------------------------------------------------- /oldest-supported-lts.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-9.0 2 | packages: 3 | - . 4 | extra-deps: [] 5 | -------------------------------------------------------------------------------- /src/NAryFunctor.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelisam/n-ary-functor/HEAD/src/NAryFunctor.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-17.0 2 | packages: 3 | - . 4 | extra-deps: [] 5 | -------------------------------------------------------------------------------- /test/doctests.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelisam/n-ary-functor/HEAD/test/doctests.hs --------------------------------------------------------------------------------