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.

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

    faktory 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.

  2. reads :: Read a => ReadS a

    faktory Faktory.Prelude

    equivalent to readsPrec with a precedence of 0.

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

    faktory 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.

  4. readReply :: IO ByteString -> IO (Either String (Maybe ByteString))

    faktory Faktory.Protocol

    No documentation available.

  5. readFile :: OsPath -> IO ByteString

    file-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.

  6. readFile' :: OsPath -> IO ByteString

    file-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.

  7. readFile :: OsPath -> IO ByteString

    file-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.

  8. readFile' :: OsPath -> IO ByteString

    file-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.

  9. readFile :: PlatformPath -> IO ByteString

    file-io System.File.PlatformPath

    Like readFile, but takes a PlatformPath instead of an OsPath.

  10. readFile' :: PlatformPath -> IO ByteString

    file-io System.File.PlatformPath

    Like readFile', but takes a PlatformPath instead of an OsPath.

Page 309 of many | Previous | Next