I'm trying to utilize the Maybe type in Haskell. I have a lookup for key, value tuples that returns a Maybe. How do I access the data that was wrapped by Maybe? For example I want to add the integer contained by Maybe with another integer.
feedback
|
|
Alternatively you can pattern match:
| |||
feedback
|
|
You could use Data.Maybe.fromMaybe, which takes a Maybe a and a value to use if it is Nothing. You could use the unsafe Data.Maybe.fromJust, which will just crash if the value is Nothing. You likely want to keep things in the Maybe monad. If you wanted to add an integer in a maybe, you could do something like
which is the same as f x = fmap (+x) (Just 4)
| |||||
|
feedback
|
|
Just as a side note: Since
| |||||||
|
feedback
|
|
Sorry, I should have googled better. using the fromMaybe function is exactly what I need. fromMaybe will return the value in Maybe if it is not nothing, otherwise it will return a default value supplied to fromMaybe. http://www.haskell.org/ghc/docs/6.12.2/html/libraries/base-4.2.0.1/Data-Maybe.html | |||
feedback
|
|
Examples for "maybe":
| |||
|
feedback
|