Hoogle Search
Within LTS Haskell 24.51 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
readArray :: Ix i => IOBitArray i -> i -> IO Boolbitwise Data.Array.BitArray.IO Read from an array at an index.
readArray :: Ix i => STBitArray s i -> i -> ST s Boolbitwise Data.Array.BitArray.ST Read from an array at an index.
-
bluefin-internal Bluefin.Internal.Examples No documentation available.
readForwardedFor :: ByteString -> Maybe ByteStringbugsnag-wai Network.Bugsnag.Wai No documentation available.
readFile :: FilePath -> IO Stringcabal-install-solver Distribution.Solver.Compat.Prelude The readFile function reads a file and returns the contents of the file as a string. The file is read lazily, on demand, as with getContents.
readIO :: Read a => String -> IO acabal-install-solver Distribution.Solver.Compat.Prelude The readIO function is similar to read except that it signals parse failure to the IO monad instead of terminating the program.
readList :: Read a => ReadS [a]cabal-install-solver Distribution.Solver.Compat.Prelude The method readList is provided to allow the programmer to give a specialised way of parsing lists of values. For example, this is used by the predefined Read instance of the Char type, where values of type String are expected to use double quotes, rather than square brackets.
-
cabal-install-solver Distribution.Solver.Compat.Prelude readMaybe :: Read a => String -> Maybe acabal-install-solver Distribution.Solver.Compat.Prelude Parse a string using the Read instance. Succeeds if there is exactly one valid result.
>>> readMaybe "123" :: Maybe Int Just 123
>>> readMaybe "hello" :: Maybe Int Nothing
readParen :: Bool -> ReadS a -> ReadS acabal-install-solver Distribution.Solver.Compat.Prelude readParen True p parses what p parses, but surrounded with parentheses. readParen False p parses what p parses, but optionally surrounded with parentheses.