Joshua Potter
1024c35452
Importantly, we want our transformer "singular" type aliases to be consistent. Therefore ban the use of the Maybe transformer (which we can easily replaces instances of with ExceptT () instead) and the either transformer (instead, favor use of ExceptT). |
||
---|---|---|
src | ||
.gitignore | ||
LICENSE | ||
README.md | ||
Setup.hs | ||
postlude.cabal | ||
stack.yaml |
README.md
Postlude
A replacement to the default Prelude.
Usage
Disable the built-in prelude at the top of your file:
{-# LANGUAGE NoImplicitPrelude #-}
Or directly in your project cabal file:
default-extensions: NoImplicitPrelude
Then in your modules:
import Postlude