Hoogle Search

Within LTS Haskell 24.31 (ghc-9.10.3)

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

  1. readNumber :: Num a => (Lexeme -> ReadPrec a) -> ReadPrec a

    base GHC.Read

    No documentation available.

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

    base GHC.Read

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

  3. readPrec :: Read a => ReadPrec a

    base GHC.Read

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

  4. readSymField :: String -> ReadPrec a -> ReadPrec a

    base GHC.Read

    Read parser for a symbol record field, of the form (###)=value (where ### is the field name). The field name must be a symbol (operator-style), e.g. (#). For regular (alphanumeric) field names, use readField. The second argument is a parser for the field value.

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

    base GHC.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.

  6. readSTRef :: STRef s a -> ST s a

    base GHC.STRef

    Read the value of an STRef

  7. readDoubleOffPtr :: Ptr Double -> Int -> IO Double

    base GHC.Storable

    No documentation available.

  8. readFloatOffPtr :: Ptr Float -> Int -> IO Float

    base GHC.Storable

    No documentation available.

  9. readFunPtrOffPtr :: Ptr (FunPtr a) -> Int -> IO (FunPtr a)

    base GHC.Storable

    No documentation available.

  10. readInt16OffPtr :: Ptr Int16 -> Int -> IO Int16

    base GHC.Storable

    No documentation available.

Page 65 of many | Previous | Next