Hoogle Search
Within LTS Haskell 24.33 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
base System.IO No documentation available.
module Text.ParserCombinators.
ReadP This is a module of parser combinators, originally written by Koen Claessen. It parses all alternatives in parallel, so it never keeps hold of the beginning of the input string, a common source of space leaks with other parsers. The (+++) choice combinator is genuinely commutative; it makes no difference which branch is "shorter".
-
base Text.ParserCombinators.ReadP No documentation available.
type
ReadS a = String -> [(a, String)]base Text.ParserCombinators.ReadP A parser for a type a, represented as a function that takes a String and returns a list of possible parses as (a,String) pairs. Note that this kind of backtracking parser is very inefficient; reading a large structure may be quite slow (cf ReadP).
module Text.ParserCombinators.
ReadPrec This module defines parser combinators for precedence parsing.
-
base Text.ParserCombinators.ReadPrec No documentation available.
type
ReadS a = String -> [(a, String)]base Text.Read A parser for a type a, represented as a function that takes a String and returns a list of possible parses as (a,String) pairs. Note that this kind of backtracking parser is very inefficient; reading a large structure may be quite slow (cf ReadP).
-
base GHC.IO.Buffer No documentation available.
-
base GHC.IO.Handle.Types No documentation available.
-
base GHC.IO.Handle.Types No documentation available.