├── .ghci ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Setup.hs ├── src └── Type │ ├── Control │ └── Monad │ │ ├── Reader.hs │ │ └── State.hs │ └── Prelude.hs └── typelevel-prelude.cabal /.ghci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcsongor/typelevel-prelude/HEAD/.ghci -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcsongor/typelevel-prelude/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcsongor/typelevel-prelude/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcsongor/typelevel-prelude/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcsongor/typelevel-prelude/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /src/Type/Control/Monad/Reader.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcsongor/typelevel-prelude/HEAD/src/Type/Control/Monad/Reader.hs -------------------------------------------------------------------------------- /src/Type/Control/Monad/State.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcsongor/typelevel-prelude/HEAD/src/Type/Control/Monad/State.hs -------------------------------------------------------------------------------- /src/Type/Prelude.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcsongor/typelevel-prelude/HEAD/src/Type/Prelude.hs -------------------------------------------------------------------------------- /typelevel-prelude.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcsongor/typelevel-prelude/HEAD/typelevel-prelude.cabal --------------------------------------------------------------------------------