exceptional

Essentially the Maybe type with error messages.

https://github.com/pharpend/exceptional

Version on this page:0.1.4.3
LTS Haskell 14.27:0.3.0.0
Stackage Nightly 2019-09-21:0.3.0.0
Latest on Hackage:0.3.0.0

See all snapshots exceptional appears in

BSD-2-Clause licensed by Peter Harpending
Maintained by [email protected]
This version can be pinned in stack with:exceptional-0.1.4.3@sha256:1d3bb1cb1377355a2c1c95a73c6ea0b62b0762e3caa070ab65b69147b3eb5a88,2376

Module documentation for 0.1.4.3

Depends on 1 package(full list with versions):

exceptional

This is a Haskell library that exists to house a type:

data Exceptional x
  = Failure String
  | Success x

It’s much like Maybe, except instead of Nothing, we have Failure String.

A comparison could also be made to Either String. I made this library because I was dissatisfied with the Monad instance for Either. In this type, fail = Failure. It’s rather simple.

Installing

cabal install exceptional

Or, add exceptional to the build-depends field in your .cabal file.