I've recently stumbled over the generic Control.Applicative.optional combinator:
optional :: Alternative f => f a -> f (Maybe a)
optional v = Just <$> v <|> pure Nothing
but I don't much practical use for that combinator; e.g. when applied to pure functors such as lists or Maybe, the results don't seem very useful:
> optional [1,2,3]
[Just 1,Just 2,Just 3,Nothing]
> optional Nothing
Just Nothing
> optional (Just 1)
Just (Just 1)
...what would be more sensible applications of optional?
someandmanywhich have the same use cases asoptional, i.e. parsers and "things that may fail" ... haskell.org/pipermail/haskell-cafe/2011-December/097476.html – stephen tetley Feb 29 '12 at 14:36