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. reduceTyFamApp_maybe :: FamInstEnvs -> Role -> TyCon -> [Type] -> Maybe Reduction

    ghc-lib-parser GHC.Core.FamInstEnv

    No documentation available.

  2. topReduceTyFamApp_maybe :: FamInstEnvs -> TyCon -> [Type] -> Maybe HetReduction

    ghc-lib-parser GHC.Core.FamInstEnv

    Try to simplify a type-family application, by *one* step If topReduceTyFamApp_maybe env r F tys = Just (HetReduction (Reduction co rhs) res_co) then co :: F tys ~R# rhs res_co :: typeKind(F tys) ~ typeKind(rhs) Type families and data families; always Representational role

  3. data CoreMap a

    ghc-lib-parser GHC.Core.Map.Expr

    CoreMap a is a map from CoreExpr to a. If you are a client, this is the type you want.

  4. class Functor m => TrieMap (m :: Type -> Type)

    ghc-lib-parser GHC.Core.Map.Expr

    No documentation available.

  5. emptyCoreMap :: CoreMap a

    ghc-lib-parser GHC.Core.Map.Expr

    No documentation available.

  6. extendCoreMap :: CoreMap a -> CoreExpr -> a -> CoreMap a

    ghc-lib-parser GHC.Core.Map.Expr

    No documentation available.

  7. foldCoreMap :: (a -> b -> b) -> b -> CoreMap a -> b

    ghc-lib-parser GHC.Core.Map.Expr

    No documentation available.

  8. lookupCoreMap :: CoreMap a -> CoreExpr -> Maybe a

    ghc-lib-parser GHC.Core.Map.Expr

    No documentation available.

  9. data BndrMap a

    ghc-lib-parser GHC.Core.Map.Type

    A BndrMap is a TypeMapG which allows us to distinguish between binding forms whose binders have different types. For example, if we are doing a TrieMap lookup on (x :: Int) -> (), we should not pick up an entry in the TrieMap for (x :: Bool) -> (): we can disambiguate this by matching on the type (or kind, if this a binder in a type) of the binder. We also need to do the same for multiplicity! Which, since multiplicities are encoded simply as a Type, amounts to have a Trie for a pair of types. Tries of pairs are composition.

  10. type CoercionMapG = GenMap CoercionMapX

    ghc-lib-parser GHC.Core.Map.Type

    No documentation available.

Page 599 of many | Previous | Next