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

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

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

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

    No documentation available.

  4. lookupDVarEnv :: DVarEnv a -> Var -> Maybe a

    ghc-lib-parser GHC.Types.Var.Env

    No documentation available.

  5. lookupInScope :: InScopeSet -> Var -> Maybe Var

    ghc-lib-parser GHC.Types.Var.Env

    Look up a variable the InScopeSet. This lets you map from the variable's identity (unique) to its full value.

  6. lookupInScope_Directly :: InScopeSet -> Unique -> Maybe Var

    ghc-lib-parser GHC.Types.Var.Env

    No documentation available.

  7. lookupRnInScope :: RnEnv2 -> Var -> Var

    ghc-lib-parser GHC.Types.Var.Env

    No documentation available.

  8. lookupVarEnv :: VarEnv a -> Var -> Maybe a

    ghc-lib-parser GHC.Types.Var.Env

    No documentation available.

  9. lookupVarEnv_Directly :: VarEnv a -> Unique -> Maybe a

    ghc-lib-parser GHC.Types.Var.Env

    No documentation available.

  10. lookupVarEnv_NF :: VarEnv a -> Var -> a

    ghc-lib-parser GHC.Types.Var.Env

    No documentation available.

Page 91 of many | Previous | Next