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.

  1. readsPrec :: Read a => Int -> ReadS a

    ghc-lib-parser GHC.Prelude.Basic

    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.

  2. readRawSetting :: (Show a, Read a) => FilePath -> RawSettings -> String -> Either String a

    ghc-lib-parser GHC.Settings.Utils

    No documentation available.

  3. readJSObject :: FilePath -> IO (JSOptions, ByteString)

    ghc-lib-parser GHC.StgToJS.Object

    Read a JS object from file

  4. readObject :: FilePath -> IO (Maybe Object)

    ghc-lib-parser GHC.StgToJS.Object

    Read object from file The object is still in memory after this (see objHandle).

  5. readObjectBlockInfo :: FilePath -> IO (Maybe BlockInfo)

    ghc-lib-parser GHC.StgToJS.Object

    Reads only the part necessary to get the block info

  6. readObjectBlocks :: FilePath -> BlockIds -> IO [ObjBlock]

    ghc-lib-parser GHC.StgToJS.Object

    Read blocks in the object file, using the given filtering function

  7. readTcRef :: MonadIO m => TcRef a -> m a

    ghc-lib-parser GHC.Tc.Types.TcRef

    No documentation available.

  8. readPackageDbForGhc :: FilePath -> IO [DbUnitInfo]

    ghc-lib-parser GHC.Unit.Database

    Read the part of the package DB that GHC is interested in.

  9. readPackageDbForGhcPkg :: forall pkgs (mode :: DbMode) t . Binary pkgs => FilePath -> DbOpenMode mode t -> IO (pkgs, DbOpenMode mode PackageDbLock)

    ghc-lib-parser GHC.Unit.Database

    Read the part of the package DB that ghc-pkg is interested in Note that the Binary instance for ghc-pkg's representation of packages is not defined in this package. This is because ghc-pkg uses Cabal types (and Binary instances for these) which this package does not depend on. If we open the package db in read only mode, we get its contents. Otherwise we additionally receive a PackageDbLock that represents a lock on the database, so that we can safely update it later.

  10. readUnitDatabase :: Logger -> UnitConfig -> FilePath -> IO (UnitDatabase UnitId)

    ghc-lib-parser GHC.Unit.State

    No documentation available.

Page 214 of many | Previous | Next