Hoogle Search
Within LTS Haskell 24.38 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
leftToMaybe :: Either l r -> Maybe lincipit-base Incipit.Either rightToMaybe :: Either l r -> Maybe rincipit-base Incipit.Either readMaybe :: Read a => String -> Maybe aincipit-base Incipit.String.Reexport Parse a string using the Read instance. Succeeds if there is exactly one valid result.
>>> readMaybe "123" :: Maybe Int Just 123
>>> readMaybe "hello" :: Maybe Int Nothing
-
incremental-parser Text.ParserCombinators.Incremental Converts a parser accepting one input type to another, just like 'mapMaybeInput except the two argument functions can demand more input by returning Nothing. If 'mapMaybeInput is defined for the two input inputs, then
mapInput f g == mapMaybeInput (Just . f) (Just . g)
-
incremental-parser Text.ParserCombinators.Incremental.LeftBiasedLocal Converts a parser accepting one input type to another, just like 'mapMaybeInput except the two argument functions can demand more input by returning Nothing. If 'mapMaybeInput is defined for the two input inputs, then
mapInput f g == mapMaybeInput (Just . f) (Just . g)
-
incremental-parser Text.ParserCombinators.Incremental.Symmetric Converts a parser accepting one input type to another, just like 'mapMaybeInput except the two argument functions can demand more input by returning Nothing. If 'mapMaybeInput is defined for the two input inputs, then
mapInput f g == mapMaybeInput (Just . f) (Just . g)
-
isocline System.Console.Isocline As readlineEx but returns Nothing on end-of-file or other errors (ctrl-C/ctrl-D). See also readlineMaybe.
readlineMaybe :: String -> IO (Maybe String)isocline System.Console.Isocline As readline but returns Nothing on end-of-file or other errors (ctrl-C/ctrl-D).
-
isocline System.Console.Isocline As readlinePrim but returns Nothing on end-of-file or other errors (ctrl-C/ctrl-D). See also readlineMaybe.
showStrippedMaybe :: Show a => Either a JSAST -> Stringlanguage-javascript Language.JavaScript.Parser No documentation available.