Hoogle Search
Within LTS Haskell 24.40 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
mkForAllTys :: [ForAllTyBinder] -> Type -> Typeghc GHC.Core.Type Wraps foralls over the type using the provided TyCoVars from left to right
mkInfForAllTy :: TyVar -> Type -> Typeghc GHC.Core.Type Like mkTyCoInvForAllTy, but tv should be a tyvar
mkInfForAllTys :: [TyVar] -> Type -> Typeghc GHC.Core.Type Like mkTyCoInvForAllTys, but tvs should be a list of tyvar
mkInvisForAllTys :: [InvisTVBinder] -> Type -> Typeghc GHC.Core.Type Wraps foralls over the type using the provided InvisTVBinders from left to right
mkSpecForAllTy :: TyVar -> Type -> Typeghc GHC.Core.Type Like mkForAllTy, but assumes the variable is dependent and Specified, a common case
mkSpecForAllTys :: [TyVar] -> Type -> Typeghc GHC.Core.Type Like mkForAllTys, but assumes all variables are dependent and Specified, a common case
mkTyCoForAllTy :: TyCoVar -> ForAllTyFlag -> Type -> Typeghc GHC.Core.Type Make a dependent forall over a TyCoVar
mkTyCoForAllTys :: [ForAllTyBinder] -> Type -> Typeghc GHC.Core.Type Make a dependent forall over a TyCoVar
mkTyCoInvForAllTy :: TyCoVar -> Type -> Typeghc GHC.Core.Type Make a dependent forall over an Inferred variable
mkTyCoInvForAllTys :: [TyCoVar] -> Type -> Typeghc GHC.Core.Type Like mkForAllTys, but assumes all variables are dependent and Inferred, a common case