OAlg.Data.Maybe
Description
Maybe.
module Data.Maybe
just :: (a -> Bool) -> a -> Maybe a Source #
just p a == Just a if and only if p a.
just p a == Just a
==
Just
p a
exstJust :: [Maybe v] -> Maybe [v] Source #
gets all the Justs - if there are any.