Hoogle Search

Within LTS Haskell 24.12 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. lookupModuleInAllUnits :: UnitState -> ModuleName -> [(Module, UnitInfo)]

    ghc GHC.Unit.State

    Takes a ModuleName, and if the module is in any package returns list of modules which take that name.

  2. lookupModulePackage :: UnitState -> ModuleName -> PkgQual -> Maybe [UnitInfo]

    ghc GHC.Unit.State

    The package which the module **appears** to come from, this could be the one which reexports the module from it's original package. This function is currently only used for -Wunused-packages

  3. lookupModuleWithSuggestions :: UnitState -> ModuleName -> PkgQual -> LookupResult

    ghc GHC.Unit.State

    No documentation available.

  4. lookupPackageName :: UnitState -> PackageName -> Maybe UnitId

    ghc GHC.Unit.State

    Find the unit we know about with the given package name (e.g. foo), if any (NB: there might be a locally defined unit name which overrides this) This function is unsafe to use in general because it doesn't respect package visibility.

  5. lookupPluginModuleWithSuggestions :: UnitState -> ModuleName -> PkgQual -> LookupResult

    ghc GHC.Unit.State

    No documentation available.

  6. lookupUnit :: UnitState -> Unit -> Maybe UnitInfo

    ghc GHC.Unit.State

    Find the unit we know about with the given unit, if any

  7. lookupUnit' :: Bool -> UnitInfoMap -> PreloadUnitClosure -> Unit -> Maybe UnitInfo

    ghc GHC.Unit.State

    A more specialized interface, which doesn't require a UnitState (so it can be used while we're initializing DynFlags) Parameters: * a boolean specifying whether or not to look for on-the-fly renamed interfaces * a UnitInfoMap * a PreloadUnitClosure

  8. lookupUnitId :: UnitState -> UnitId -> Maybe UnitInfo

    ghc GHC.Unit.State

    Find the unit we know about with the given unit id, if any

  9. lookupUnitId' :: UnitInfoMap -> UnitId -> Maybe UnitInfo

    ghc GHC.Unit.State

    Find the unit we know about with the given unit id, if any

  10. lookupComponent :: PackageDescription -> ComponentName -> Maybe Component

    Cabal Distribution.Simple.LocalBuildInfo

    No documentation available.

Page 63 of many | Previous | Next