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 your 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 | |
| test-hlint | Enabled |
Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info
Downloads
- generic-maybe-0.3.0.4.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.5 && <4.8), ghc-prim [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-13T17:01:55Z |
| Distributions | |
| Reverse Dependencies | 1 direct, 0 indirect [details] |
| Downloads | 7633 total (26 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] |