Hoogle Search
Within LTS Haskell 24.32 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
readHandlePortably :: Handle -> IO Texthledger-lib Hledger.Utils.IO No documentation available.
readHandlePortably' :: Maybe DynEncoding -> Handle -> IO Texthledger-lib Hledger.Utils.IO Read text from a handle with a specified encoding, using the encoding package. Or if no encoding is specified, it uses the handle's current encoding, after first changing it to UTF-8BOM if it was UTF-8, to allow a Byte Order Mark at the start. Also it converts Windows line endings to newlines. If decoding fails, this throws an IOException (or possibly a UnicodeException or something else from the encoding package).
readDecimal :: Text -> Integerhledger-lib Hledger.Utils.Text Read a decimal number from a Text. Assumes the input consists only of digit characters.
readMix :: [FilePath] -> Either String TixModule -> IO Mixhpc Trace.Hpc.Mix Read a mix file.
readTix :: FilePath -> IO (Maybe Tix)hpc Trace.Hpc.Tix Read a .tix File.
readFileUtf8 :: FilePath -> IO Stringhpc Trace.Hpc.Util Read a file strictly, as opposed to how readFile does it using lazy IO, but also disregard system locale and assume that the file is encoded in UTF-8. Haskell source files are expected to be encoded in UTF-8 by GHC.
readUnitPart :: (Ord i, C a) => Map String (T i a) -> String -> (T i a, String)numeric-prelude Number.Physical.Read No documentation available.
readsNat :: (Enum i, Ord i, Read v, C a v) => T i a -> Int -> ReadS (T i v)numeric-prelude Number.Physical.Read No documentation available.
readsNat :: (Read v, C a v) => T Dimension a -> Int -> ReadS (T a v)numeric-prelude Number.SI No documentation available.
readFile :: FilePath -> IO Stringnumeric-prelude NumericPrelude 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.