Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

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

  1. reads :: Read a => ReadS a

    base Text.Read

    equivalent to readsPrec with a precedence of 0.

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

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

    base Text.Read.Lex

    No documentation available.

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

    base Text.Read.Lex

    No documentation available.

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

    base Text.Read.Lex

    No documentation available.

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

    base Text.Read.Lex

    No documentation available.

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

    base Text.Read.Lex

    No documentation available.

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

    base GHC.Arr

    No documentation available.

  9. readArrayArrayArray# :: MutableArrayArray# s -> Int# -> State# s -> (# State# s, ArrayArray# #)

    base GHC.ArrayArray

    No documentation available.

  10. readByteArrayArray# :: MutableArrayArray# s -> Int# -> State# s -> (# State# s, ByteArray# #)

    base GHC.ArrayArray

    No documentation available.

Page 25 of many | Previous | Next