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. isForAllTy :: Type -> Bool

    ghc GHC.Core.Type

    Checks whether this is a proper forall (with a named binder)

  2. isForAllTy_co :: Type -> Bool

    ghc GHC.Core.Type

    Like isForAllTy, but returns True only if it is a covar binder

  3. isForAllTy_invis_ty :: Type -> Bool

    ghc GHC.Core.Type

    Like isForAllTy, but returns True only if it is an inferred tyvar binder

  4. isForAllTy_ty :: Type -> Bool

    ghc GHC.Core.Type

    Like isForAllTy, but returns True only if it is a tyvar binder

  5. isInvisibleForAllTyFlag :: ForAllTyFlag -> Bool

    ghc GHC.Core.Type

    Does this ForAllTyFlag classify an argument that is not written in Haskell?

  6. isVisibleForAllTyFlag :: ForAllTyFlag -> Bool

    ghc GHC.Core.Type

    Does this ForAllTyFlag classify an argument that is written in Haskell?

  7. mkForAllTy :: ForAllTyBinder -> Type -> Type

    ghc GHC.Core.Type

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

  8. mkForAllTyBinder :: vis -> TyCoVar -> VarBndr TyCoVar vis

    ghc GHC.Core.Type

    Make a named binder

  9. mkForAllTyBinders :: vis -> [TyCoVar] -> [VarBndr TyCoVar vis]

    ghc GHC.Core.Type

    Make many named binders

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

    ghc GHC.Core.Type

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

Page 267 of many | Previous | Next