Hoogle Search
Within LTS Haskell 24.37 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
eqCanRewriteFR :: CtFlavourRole -> CtFlavourRole -> Boolghc GHC.Tc.Types.Constraint No documentation available.
eqCtEvidence :: EqCt -> CtEvidenceghc GHC.Tc.Types.Constraint No documentation available.
eqCtFlavourRole :: EqCt -> CtFlavourRoleghc GHC.Tc.Types.Constraint Extract the flavour and role from a Ct
-
ghc GHC.Tc.Types.Constraint No documentation available.
-
ghc GHC.Tc.Types.Constraint No documentation available.
-
ghc GHC.Tc.Types.Constraint No documentation available.
-
ghc GHC.Tc.Types.Constraint No documentation available.
-
ghc GHC.Tc.Types.Constraint No documentation available.
eqForAllVis :: ForAllTyFlag -> ForAllTyFlag -> Boolghc GHC.Tc.Utils.TcType Do these denote the same level of visibility? Required arguments are visible, others are not. So this function equates Specified and Inferred. Used for printing.
eqType :: Type -> Type -> Boolghc GHC.Tc.Utils.TcType Type equality on source types. Does not look through newtypes, PredTypes or type families, but it does look through type synonyms. This first checks that the kinds of the types are equal and then checks whether the types are equal, ignoring casts and coercions. (The kind check is a recursive call, but since all kinds have type Type, there is no need to check the types of kinds.) See also Note [Non-trivial definitional equality] in GHC.Core.TyCo.Rep.