generic-maybe: A generic version of Data.Maybe
This module is a drop in replacement for Data.Maybe
. It generalizes
the functions to any types that share the same "sum of products" view
of Maybe
.
To use the module for you type, enable GHC's DeriveGeneric extension and derive a Generic instance for your type.
import GHC.Generics data Result a = Success a | Fail deriving (Show, Generic)
After which you can use the functions, like your type was Data.Maybe.Maybe
> fromMaybe 'a' Fail 'a'
> fromMaybe 'a' $ Success 'b' 'b'
Flags
Manual Flags
Name | Description | Default |
---|---|---|
test-doctests | Enabled |
Automatic Flags
Name | Description | Default |
---|---|---|
test-hlint | Disabled |
Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info
Downloads
- generic-maybe-0.1.1.0.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
- No Candidates
Versions [RSS] | 0.1.0.0, 0.1.0.1, 0.1.1.0, 0.2.0.0, 0.2.1.0, 0.3.0.0, 0.3.0.1, 0.3.0.2, 0.3.0.3, 0.3.0.4 |
---|---|
Dependencies | base (>=4.6 && <4.7), lens (>=3.10 && <5.0) [details] |
License | BSD-3-Clause |
Author | Jonathan Fischoff |
Maintainer | jonathangfischoff@gmail.com |
Category | Generics |
Home page | https://github.com/jfischoff/generic-maybe |
Uploaded | by JonathanFischoff at 2014-02-10T09:03:18Z |
Distributions | |
Reverse Dependencies | 1 direct, 0 indirect [details] |
Downloads | 7473 total (24 in the last 30 days) |
Rating | (no votes yet) [estimated by Bayesian average] |
Your Rating | |
Status | Docs available [build log] Successful builds reported [all 1 reports] |