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.
readParen :: Bool -> ReadS a -> ReadS abase 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.
readPrec :: Read a => ReadPrec abase Text.Read Proposed replacement for readsPrec using new-style parsers (GHC only).
-
base Text.Read equivalent to readsPrec with a precedence of 0.
readsPrec :: Read a => Int -> ReadS abase 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.readBinP :: (Eq a, Num a) => ReadP abase Text.Read.Lex No documentation available.
readDecP :: (Eq a, Num a) => ReadP abase Text.Read.Lex No documentation available.
readHexP :: (Eq a, Num a) => ReadP abase Text.Read.Lex No documentation available.
readIntP :: Num a => a -> (Char -> Bool) -> (Char -> Int) -> ReadP abase Text.Read.Lex No documentation available.
readOctP :: (Eq a, Num a) => ReadP abase Text.Read.Lex No documentation available.
readSTArray :: Ix i => STArray s i e -> i -> ST s ebase GHC.Arr No documentation available.