Hoogle Search

Within LTS Haskell 24.50 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. reads :: Read a => ReadS a

    basic-prelude BasicPrelude

    equivalent to readsPrec with a precedence of 0.

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

    basic-prelude BasicPrelude

    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.

  3. readBChan :: BChan a -> IO a

    brick Brick.BChan

    Reads the next value from the BChan; blocks if necessary.

  4. readBChan2 :: BChan a -> BChan b -> IO (Either a b)

    brick Brick.BChan

    Reads the next value from either BChan, prioritizing the first BChan; blocks if necessary.

  5. readFile :: MonadIO m => FilePath -> m ByteString

    classy-prelude ClassyPrelude

    Strictly read a file into a ByteString.

  6. readFileUtf8 :: MonadIO m => FilePath -> m Text

    classy-prelude ClassyPrelude

    Strictly read a file into a Text using a UTF-8 character encoding. In the event of a character encoding error, a Unicode replacement character will be used (a.k.a., lenientDecode).

  7. readMay :: (Element c ~ Char, MonoFoldable c, Read a) => c -> Maybe a

    classy-prelude ClassyPrelude

    No documentation available.

  8. readGZFile :: FilePath -> IO ByteString

    elynx-tools ELynx.Tools.InputOutput

    Read file. If file path ends with ".gz", assume gzipped file and decompress before read.

  9. readToUnknown :: forall (m :: Type -> Type) a . Monad m => ReaderT SqlReadBackend m a -> ReaderT SqlBackend m a

    esqueleto Database.Esqueleto

    Useful for running a read query against a backend with unknown capabilities.

  10. readToWrite :: forall (m :: Type -> Type) a . Monad m => ReaderT SqlReadBackend m a -> ReaderT SqlWriteBackend m a

    esqueleto Database.Esqueleto

    Useful for running a read query against a backend with read and write capabilities.

Page 210 of many | Previous | Next