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. readDef :: Read a => a -> String -> a

    safe Safe

    No documentation available.

  2. readEitherSafe :: Read a => String -> Either String a

    safe Safe

    This function provides a more precise error message than readEither from base.

  3. readMay :: Read a => String -> Maybe a

    safe Safe

    No documentation available.

  4. readNote :: (Partial, Read a) => String -> String -> a

    safe Safe

    readNote uses readEitherSafe for the error message.

  5. readVar :: Var a -> IO a

    extra Control.Concurrent.Extra

    Read the current value of the Var.

  6. readVersion :: Partial => String -> Version

    extra Data.Version.Extra

    Read a Version or throw an exception.

    \x -> readVersion (showVersion x) == x
    readVersion "hello" == undefined
    

  7. readFile' :: FilePath -> IO String

    extra Extra

    The readFile' function reads a file and returns the contents of the file as a string. The file is fully read before being returned, as with getContents'.

  8. readFileBinary :: FilePath -> IO String

    extra Extra

    Like readFile, but for binary files.

  9. readFileBinary' :: FilePath -> IO String

    extra Extra

    A strict version of readFileBinary, see readFile' for details.

  10. readFileEncoding :: TextEncoding -> FilePath -> IO String

    extra Extra

    Like readFile, but setting an encoding.

Page 104 of many | Previous | Next