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.
-
basic-prelude BasicPrelude equivalent to readsPrec with a precedence of 0.
readsPrec :: Read a => Int -> ReadS abasic-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.-
brick Brick.BChan Reads the next value from the BChan; blocks if necessary.
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.
readFile :: MonadIO m => FilePath -> m ByteStringclassy-prelude ClassyPrelude Strictly read a file into a ByteString.
readFileUtf8 :: MonadIO m => FilePath -> m Textclassy-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).
readMay :: (Element c ~ Char, MonoFoldable c, Read a) => c -> Maybe aclassy-prelude ClassyPrelude No documentation available.
readGZFile :: FilePath -> IO ByteStringelynx-tools ELynx.Tools.InputOutput Read file. If file path ends with ".gz", assume gzipped file and decompress before read.
-
esqueleto Database.Esqueleto Useful for running a read query against a backend with unknown capabilities.
-
esqueleto Database.Esqueleto Useful for running a read query against a backend with read and write capabilities.