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.

  1. readHandlePortably :: Handle -> IO Text

    hledger-lib Hledger.Utils.IO

    No documentation available.

  2. readHandlePortably' :: Maybe DynEncoding -> Handle -> IO Text

    hledger-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).

  3. readDecimal :: Text -> Integer

    hledger-lib Hledger.Utils.Text

    Read a decimal number from a Text. Assumes the input consists only of digit characters.

  4. readMix :: [FilePath] -> Either String TixModule -> IO Mix

    hpc Trace.Hpc.Mix

    Read a mix file.

  5. readTix :: FilePath -> IO (Maybe Tix)

    hpc Trace.Hpc.Tix

    Read a .tix File.

  6. readFileUtf8 :: FilePath -> IO String

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

  7. readUnitPart :: (Ord i, C a) => Map String (T i a) -> String -> (T i a, String)

    numeric-prelude Number.Physical.Read

    No documentation available.

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

  9. readsNat :: (Read v, C a v) => T Dimension a -> Int -> ReadS (T a v)

    numeric-prelude Number.SI

    No documentation available.

  10. readFile :: FilePath -> IO String

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

Page 203 of many | Previous | Next