Hoogle Search

Within LTS Haskell 24.36 (ghc-9.10.3)

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

  1. lookupTyCon :: MonadThings m => Name -> m TyCon

    ghc-lib-parser GHC.Types.TyThing

    No documentation available.

  2. lookupTypeEnv :: TypeEnv -> Name -> Maybe TyThing

    ghc-lib-parser GHC.Types.TypeEnv

    No documentation available.

  3. lookupUDFM :: Uniquable key => UniqDFM key elt -> key -> Maybe elt

    ghc-lib-parser GHC.Types.Unique.DFM

    No documentation available.

  4. lookupUniqDSet :: Uniquable a => UniqDSet a -> a -> Maybe a

    ghc-lib-parser GHC.Types.Unique.DSet

    No documentation available.

  5. lookupUFM :: Uniquable key => UniqFM key elt -> key -> Maybe elt

    ghc-lib-parser GHC.Types.Unique.FM

    No documentation available.

  6. lookupWithDefaultUFM :: Uniquable key => UniqFM key elt -> elt -> key -> elt

    ghc-lib-parser GHC.Types.Unique.FM

    No documentation available.

  7. lookupUniqMap :: Uniquable k => UniqMap k a -> k -> Maybe a

    ghc-lib-parser GHC.Types.Unique.Map

    No documentation available.

  8. lookupWithDefaultUniqMap :: Uniquable k => UniqMap k a -> a -> k -> a

    ghc-lib-parser GHC.Types.Unique.Map

    No documentation available.

  9. lookupUSDFM :: Uniquable key => UniqSDFM key ele -> key -> Maybe ele

    ghc-lib-parser GHC.Types.Unique.SDFM

    lookupSUDFM env x looks up an entry for x, looking through all Indirects until it finds a shared Entry. Examples in terms of the model (see UniqSDFM): >>> lookupUSDFM [({u1,u3}, Just ele1), ({u2}, Just ele2)] u3 == Just ele1 >>> lookupUSDFM [({u1,u3}, Just ele1), ({u2}, Just ele2)] u4 == Nothing >>> lookupUSDFM [({u1,u3}, Just ele1), ({u2}, Nothing)] u2 == Nothing

  10. lookupUniqSet :: Uniquable key => UniqSet key -> key -> Maybe key

    ghc-lib-parser GHC.Types.Unique.Set

    What's the point you might ask? We might have changed an object without it's key changing. In which case this lookup makes sense.

Page 91 of many | Previous | Next