Hoogle Search
Within LTS Haskell 24.33 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
readParen :: Bool -> ReadS a -> ReadS afaktory Faktory.Prelude readParen True p parses what p parses, but surrounded with parentheses. readParen False p parses what p parses, but optionally surrounded with parentheses.
-
faktory Faktory.Prelude equivalent to readsPrec with a precedence of 0.
readsPrec :: Read a => Int -> ReadS afaktory Faktory.Prelude 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.readReply :: IO ByteString -> IO (Either String (Maybe ByteString))faktory Faktory.Protocol No documentation available.
readFile :: OsPath -> IO ByteStringfile-io System.File.OsPath The readFile function reads a file and returns the contents of the file as a ByteString. The file is read lazily, on demand.
readFile' :: OsPath -> IO ByteStringfile-io System.File.OsPath The readFile' function reads a file and returns the contents of the file as a ByteString. The file is fully read before being returned.
readFile :: OsPath -> IO ByteStringfile-io System.File.OsPath.Internal The readFile function reads a file and returns the contents of the file as a ByteString. The file is read lazily, on demand.
readFile' :: OsPath -> IO ByteStringfile-io System.File.OsPath.Internal The readFile' function reads a file and returns the contents of the file as a ByteString. The file is fully read before being returned.
readFile :: PlatformPath -> IO ByteStringfile-io System.File.PlatformPath Like readFile, but takes a PlatformPath instead of an OsPath.
readFile' :: PlatformPath -> IO ByteStringfile-io System.File.PlatformPath Like readFile', but takes a PlatformPath instead of an OsPath.