├── .gitignore ├── LICENSE ├── README.md ├── Setup.hs ├── partial.cabal ├── src ├── Control │ └── Partial.hs └── Data │ └── List │ └── Partial.hs └── stack.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paf31/partial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paf31/partial/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /partial.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paf31/partial/HEAD/partial.cabal -------------------------------------------------------------------------------- /src/Control/Partial.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paf31/partial/HEAD/src/Control/Partial.hs -------------------------------------------------------------------------------- /src/Data/List/Partial.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paf31/partial/HEAD/src/Data/List/Partial.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-9.14 2 | packages: 3 | - . 4 | --------------------------------------------------------------------------------