Hoogle Search
Within LTS Haskell 24.6 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
ArrowFun :: !HsExpr GhcRn -> FRRArrowContextghc-lib-parser GHC.Tc.Types.Origin The overall type of an arrow proc expression does not have a fixed runtime representation. Test case: RepPolyArrowFun.
ArrowReboundIfSkol :: SkolemInfoAnonghc-lib-parser GHC.Tc.Types.Origin No documentation available.
ArrowCaseAlt :: HsArrowMatchContextghc-lib-parser Language.Haskell.Syntax.Expr A case alternative inside arrow notation
-
ghc-lib-parser Language.Haskell.Syntax.Expr do-notation in an arrow-command context
ArrowLamAlt :: HsLamVariant -> HsArrowMatchContextghc-lib-parser Language.Haskell.Syntax.Expr A , case or cases alternative inside arrow notation
ArrowMatchCtxt :: HsArrowMatchContext -> HsMatchContext fnghc-lib-parser Language.Haskell.Syntax.Expr A pattern match inside arrow notation
-
ghc-typelits-presburger GHC.TypeLits.Presburger.Compat No documentation available.
-
hint Language.Haskell.Interpreter No documentation available.
-
hint Language.Haskell.Interpreter.Extension No documentation available.
class Arrow a =>
ArrowApply (a :: Type -> Type -> Type)rebase Rebase.Prelude Some arrows allow application of arrow inputs to other inputs. Instances should satisfy the following laws:
first (arr (\x -> arr (\y -> (x,y)))) >>> app = id
first (arr (g >>>)) >>> app = second g >>> app
first (arr (>>> h)) >>> app = app >>> h