Hoogle Search
Within LTS Haskell 24.32 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
readParen :: Bool -> ReadS a -> ReadS abase-compat Text.Read.Compat 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-compat Text.Read.Compat Proposed replacement for readsPrec using new-style parsers (GHC only).
-
base-compat Text.Read.Compat equivalent to readsPrec with a precedence of 0.
readsPrec :: Read a => Int -> ReadS abase-compat Text.Read.Compat 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-compat Text.Read.Lex.Compat No documentation available.
readMany :: Read a => String -> [a]utility-ht Text.Read.HT No documentation available.
readsInfixPrec :: (Read a, Read b) => String -> Int -> Int -> (a -> b -> c) -> ReadS cutility-ht Text.Read.HT Parse a string containing an infix operator.
readFile :: FilePath -> SourceT IO ByteStringservant Servant.Types.SourceT Read file.
>>> foreach fail BS.putStr (readFile "servant.cabal") cabal-version: 3.0 name: servant ...
readSoFar :: StreamFileStatus -> Int64http-conduit Network.HTTP.Client.Conduit No documentation available.
readsPrecDefault :: (GRead (Rep1 f a), Generic1 f) => Int -> ReadS (f a)transformers-compat Data.Functor.Classes.Generic.Internal A default readsPrec implementation for Generic1 instances that leverages Read1.