Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. readParen :: Bool -> ReadS a -> ReadS a

    base Text.Read

    readParen True p parses what p parses, but surrounded with parentheses. readParen False p parses what p parses, but optionally surrounded with parentheses.

  2. readPrec :: Read a => ReadPrec a

    base Text.Read

    Proposed replacement for readsPrec using new-style parsers (GHC only).

  3. reads :: Read a => ReadS a

    base Text.Read

    equivalent to readsPrec with a precedence of 0.

  4. readsPrec :: Read a => Int -> ReadS a

    base Text.Read

    attempts to parse a value from the front of the string, returning a list of (parsed value, remaining string) pairs. If there is no successful parse, the returned list is empty. Derived instances of Read and Show satisfy the following:

    That is, readsPrec parses the string produced by showsPrec, and delivers the value that showsPrec started with.

  5. readBinP :: (Eq a, Num a) => ReadP a

    base Text.Read.Lex

    No documentation available.

  6. readDecP :: (Eq a, Num a) => ReadP a

    base Text.Read.Lex

    No documentation available.

  7. readHexP :: (Eq a, Num a) => ReadP a

    base Text.Read.Lex

    No documentation available.

  8. readIntP :: Num a => a -> (Char -> Bool) -> (Char -> Int) -> ReadP a

    base Text.Read.Lex

    No documentation available.

  9. readOctP :: (Eq a, Num a) => ReadP a

    base Text.Read.Lex

    No documentation available.

  10. readSTArray :: Ix i => STArray s i e -> i -> ST s e

    base GHC.Arr

    No documentation available.

Page 25 of many | Previous | Next