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. lookupTypeEnv :: TypeEnv -> Name -> Maybe TyThing

    ghc GHC.Types.TypeEnv

    No documentation available.

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

    ghc GHC.Types.Unique.DFM

    No documentation available.

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

    ghc GHC.Types.Unique.DSet

    No documentation available.

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

    ghc GHC.Types.Unique.FM

    No documentation available.

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

    ghc GHC.Types.Unique.FM

    No documentation available.

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

    ghc GHC.Types.Unique.Map

    No documentation available.

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

    ghc GHC.Types.Unique.Map

    No documentation available.

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

    ghc 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

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

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

  10. lookupUniqSet_Directly :: UniqSet a -> Unique -> Maybe a

    ghc GHC.Types.Unique.Set

    No documentation available.

Page 60 of many | Previous | Next