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.
readNumber :: Num a => (Lexeme -> ReadPrec a) -> ReadPrec abase GHC.Read No documentation available.
readParen :: Bool -> ReadS a -> ReadS abase 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.
readPrec :: Read a => ReadPrec abase GHC.Read Proposed replacement for readsPrec using new-style parsers (GHC only).
readSymField :: String -> ReadPrec a -> ReadPrec abase 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.
readsPrec :: Read a => Int -> ReadS abase 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.readSTRef :: STRef s a -> ST s abase GHC.STRef Read the value of an STRef
readDoubleOffPtr :: Ptr Double -> Int -> IO Doublebase GHC.Storable No documentation available.
readFloatOffPtr :: Ptr Float -> Int -> IO Floatbase GHC.Storable No documentation available.
readFunPtrOffPtr :: Ptr (FunPtr a) -> Int -> IO (FunPtr a)base GHC.Storable No documentation available.
readInt16OffPtr :: Ptr Int16 -> Int -> IO Int16base GHC.Storable No documentation available.