Created
March 18, 2011 15:13
-
-
Save kowey/876235 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Choice where | |
| data Choice a = Wanted a | Unwanted a | |
| wanted :: Choice a -> Maybe a | |
| wanted (Wanted s) = Just s | |
| wanted (Unwanted _) = Nothing | |
| -- | The item, regardless of whether it's wanted or not | |
| undiscriminate :: Choice a -> a | |
| undiscriminate (Wanted x) = x | |
| undiscriminate (Unwanted x) = x |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment