Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

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

  1. mkForAllTy :: ForAllTyBinder -> Type -> Type

    ghc GHC.Tc.Utils.TcType

    Like mkTyCoForAllTy, but does not check the occurrence of the binder See Note [Unused coercion variable in ForAllTy]

  2. mkForAllTys :: [ForAllTyBinder] -> Type -> Type

    ghc GHC.Tc.Utils.TcType

    Wraps foralls over the type using the provided TyCoVars from left to right

  3. mkInfForAllTy :: TyVar -> Type -> Type

    ghc GHC.Tc.Utils.TcType

    Like mkTyCoInvForAllTy, but tv should be a tyvar

  4. mkInfForAllTys :: [TyVar] -> Type -> Type

    ghc GHC.Tc.Utils.TcType

    Like mkTyCoInvForAllTys, but tvs should be a list of tyvar

  5. mkInvisForAllTys :: [InvisTVBinder] -> Type -> Type

    ghc GHC.Tc.Utils.TcType

    Wraps foralls over the type using the provided InvisTVBinders from left to right

  6. mkSpecForAllTys :: [TyVar] -> Type -> Type

    ghc GHC.Tc.Utils.TcType

    Like mkForAllTys, but assumes all variables are dependent and Specified, a common case

  7. mkTyCoInvForAllTy :: TyCoVar -> Type -> Type

    ghc GHC.Tc.Utils.TcType

    Make a dependent forall over an Inferred variable

  8. mkTyCoInvForAllTys :: [TyCoVar] -> Type -> Type

    ghc GHC.Tc.Utils.TcType

    Like mkForAllTys, but assumes all variables are dependent and Inferred, a common case

  9. tcSplitForAllInvisTVBinders :: Type -> ([TcInvisTVBinder], Type)

    ghc GHC.Tc.Utils.TcType

    Like tcSplitForAllTyVars, but only splits ForAllTys with Invisible type variable binders. All split tyvars are annotated with their Specificity.

  10. tcSplitForAllInvisTyVars :: Type -> ([TyVar], Type)

    ghc GHC.Tc.Utils.TcType

    Like tcSplitForAllTyVars, but only splits ForAllTys with Invisible type variable binders.

Page 314 of many | Previous | Next