Hoogle Search
Within LTS Haskell 24.52 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
sequence_ :: (Foldable t, Monad m) => t (m a) -> m ()ghc-lib-parser GHC.Prelude.Basic Evaluate each monadic action in the structure from left to right, and ignore the results. For a version that doesn't ignore the results see sequence. sequence_ is just like sequenceA_, but specialised to monadic actions.
-
ghc-lib-parser GHC.Stg.InferTags.TagSig No documentation available.
-
ghc-lib-parser GHC.Stg.InferTags.TagSig No documentation available.
luRequired :: LinkableUnit -> Boolghc-lib-parser GHC.StgToJS.Types always link this unit
BlockedEquality :: ErrorItem -> TcSolverReportMsgghc-lib-parser GHC.Tc.Errors.Types An equality between two types is blocked on a kind equality between their kinds. Test cases: none.
DerivErrLangExtRequired :: Extension -> DeriveInstanceErrReasonghc-lib-parser GHC.Tc.Errors.Types No documentation available.
FunBindLacksEquations :: Name -> ConversionFailReasonghc-lib-parser GHC.Tc.Errors.Types No documentation available.
RepresentationalEq :: TyVarInfo -> Maybe CoercibleMsg -> CannotUnifyVariableReasonghc-lib-parser GHC.Tc.Errors.Types No documentation available.
TcRnTypeEqualityOutOfScope :: TcRnMessageghc-lib-parser GHC.Tc.Errors.Types TcRnTypeEqualityOutOfScope is a warning (controlled by -Wtype-equality-out-of-scope) that occurs when the type equality (a ~ b) is not in scope. Test case: warningsshould_compileT18862b
TcRnTypeEqualityRequiresOperators :: TcRnMessageghc-lib-parser GHC.Tc.Errors.Types TcRnTypeEqualityRequiresOperators is a warning (controlled by -Wtype-equality-requires-operators) that occurs when the type equality (a ~ b) is used without the TypeOperators extension. Example: {-# LANGUAGE NoTypeOperators #-} f :: (a ~ b) => a -> b Test case: T18862a