Instant is
off
|
Search plugin
|
Manual
|
haskell.org
Maybe
-base +parsec
Packages
base
parsec
option
Maybe
:: Stream s m t => ParsecT s u m a -> ParsecT s u m (Maybe a)
parsec
Text.Parsec.Combinator
,
parsec
Text.ParserCombinators.Parsec.Combinator
optionMaybe p tries to apply parser p. If p fails without consuming input, it return
Nothing
, otherwise it returns
Just
the value returned by p.
©
Neil Mitchell
2004-2012, version 4.2.11