Maybe package:strict

The strict variant of the standard Haskell Maybe type and the corresponding variants of the functions from Data.Maybe. Note that in contrast to the standard lazy Maybe type, the strict Maybe type is not an applicative functor, and therefore also not a monad. The problem is the homomorphism law, which states that
pure f <*> pure x = pure (f x)  -- must hold for all f
This law does not hold for the expected applicative functor instance of Maybe, as this instance does not satisfy pure f <*> pure _|_ = pure (f _|_) for f = const.
The type of strict optional values.
Given a default value, a function and a Maybe value, yields the default value if the Maybe value is Nothing and applies the function to the value stored in the Just otherwise.
Analogous to maybeToList in Data.Maybe.
Analogous to catMaybes in Data.Maybe.
Given a default value and a Maybe, yield the default value if the Maybe argument is Nothing and extract the value out of the Just otherwise.
Analogous to listToMaybe in Data.Maybe.
Analogous to mapMaybe in Data.Maybe.