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.

  1. ReadWriteMode :: IOMode

    base System.IO

    No documentation available.

  2. 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".

  3. data ReadP a

    base Text.ParserCombinators.ReadP

    No documentation available.

  4. 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).

  5. module Text.ParserCombinators.ReadPrec

    This module defines parser combinators for precedence parsing.

  6. data ReadPrec a

    base Text.ParserCombinators.ReadPrec

    No documentation available.

  7. 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).

  8. ReadBuffer :: BufferState

    base GHC.IO.Buffer

    No documentation available.

  9. ReadHandle :: HandleType

    base GHC.IO.Handle.Types

    No documentation available.

  10. ReadWriteHandle :: HandleType

    base GHC.IO.Handle.Types

    No documentation available.

Page 364 of many | Previous | Next