Hoogle Search
Within LTS Haskell 24.41 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
ghc GHC.Core.TyCo.Tidy Calls tidyType on a top-level type (i.e. with an empty tidying environment)
tidyTyCoVarOcc :: TidyEnv -> TyCoVar -> TyCoVarghc GHC.Core.TyCo.Tidy No documentation available.
tidyType :: TidyEnv -> Type -> Typeghc GHC.Core.TyCo.Tidy Tidy a Type See Note [Strictness in tidyType and friends]
tidyTypes :: TidyEnv -> [Type] -> [Type]ghc GHC.Core.TyCo.Tidy Tidy a list of Types See Note [Strictness in tidyType and friends]
tidyVarBndr :: TidyEnv -> TyCoVar -> (TidyEnv, TyCoVar)ghc GHC.Core.TyCo.Tidy No documentation available.
tidyVarBndrs :: TidyEnv -> [TyCoVar] -> (TidyEnv, [TyCoVar])ghc GHC.Core.TyCo.Tidy This tidies up a type for printing in an error message, or in an interface file. It doesn't change the uniques at all, just the print names.
-
ghc GHC.Core.TyCon No documentation available.
-
ghc GHC.Core.TyCon No documentation available.
isValidDTT2TyCon :: TyCon -> Boolghc GHC.Core.TyCon Returns True if a boxed type headed by the given TyCon satisfies condition DTT2 of Note [DataToTag overview] in GHC.Tc.Instance.Class
tyConStupidTheta :: TyCon -> [PredType]ghc GHC.Core.TyCon Find the "stupid theta" of the TyCon. A "stupid theta" is the context to the left of an algebraic type declaration, e.g. Eq a in the declaration data Eq a => T a .... See Note [The stupid context] in GHC.Core.DataCon.