├── .gitignore ├── .stylish-haskell.yaml ├── .travis.yml ├── CHANGELOG.md ├── Data ├── Pattern.hs └── Pattern │ ├── Base.hs │ ├── Base │ ├── Difference.hs │ ├── Tuple.hs │ └── TypeList.hs │ └── Common.hs ├── LICENSE ├── README.md ├── Setup.lhs ├── examples └── Examples.hs ├── first-class-patterns.cabal └── stack.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/first-class-patterns/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylish-haskell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/first-class-patterns/HEAD/.stylish-haskell.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/first-class-patterns/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/first-class-patterns/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Data/Pattern.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/first-class-patterns/HEAD/Data/Pattern.hs -------------------------------------------------------------------------------- /Data/Pattern/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/first-class-patterns/HEAD/Data/Pattern/Base.hs -------------------------------------------------------------------------------- /Data/Pattern/Base/Difference.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/first-class-patterns/HEAD/Data/Pattern/Base/Difference.hs -------------------------------------------------------------------------------- /Data/Pattern/Base/Tuple.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/first-class-patterns/HEAD/Data/Pattern/Base/Tuple.hs -------------------------------------------------------------------------------- /Data/Pattern/Base/TypeList.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/first-class-patterns/HEAD/Data/Pattern/Base/TypeList.hs -------------------------------------------------------------------------------- /Data/Pattern/Common.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/first-class-patterns/HEAD/Data/Pattern/Common.hs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/first-class-patterns/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/first-class-patterns/HEAD/README.md -------------------------------------------------------------------------------- /Setup.lhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/first-class-patterns/HEAD/Setup.lhs -------------------------------------------------------------------------------- /examples/Examples.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/first-class-patterns/HEAD/examples/Examples.hs -------------------------------------------------------------------------------- /first-class-patterns.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kowainik/first-class-patterns/HEAD/first-class-patterns.cabal -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- 1 | resolver: nightly-2019-09-30 2 | --------------------------------------------------------------------------------