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.
(
<$$> ) :: Applicative m => m Doc -> m Doc -> m Docwl-pprint-text Text.PrettyPrint.Leijen.Text.Monadic The document (x <$$> y) concatenates document x and y with a linebreak in between. (infixr 5)
(
<$> ) :: Applicative m => m Doc -> m Doc -> m Docwl-pprint-text Text.PrettyPrint.Leijen.Text.Monadic The document (x <$> y) concatenates document x and y with a line in between. (infixr 5)
(
<$ ) :: (Contiguous arr1, Contiguous arr2, Element arr1 b, Element arr2 a) => a -> arr1 b -> arr2 acontiguous Data.Primitive.Contiguous Replace all locations in the input with the same value. Equivalent to Data.Functor.<$.
(
>$< ) :: Contravariant f => (a -> b) -> f b -> f adhall Dhall.Marshal.Encode This is an infix alias for contramap.
-
express Data.Express function application between expressions
(
>$$ ) :: [Expr] -> Expr -> [Expr]express Data.Express Lists valid applications between a list of Exprs and an Expr.
> [plus, times] >$$ zero [(0 +) :: Int -> Int,(0 *) :: Int -> Int]
(
>$$< ) :: [Expr] -> [Expr] -> [Expr]express Data.Express Lists valid applications between lists of Exprs
> [notE, plus] >$$< [false, true, zero] [not False :: Bool,not True :: Bool,(0 +) :: Int -> Int]
(
>$$ ) :: [Expr] -> Expr -> [Expr]express Data.Express.Basic Lists valid applications between a list of Exprs and an Expr.
> [plus, times] >$$ zero [(0 +) :: Int -> Int,(0 *) :: Int -> Int]
(
>$$< ) :: [Expr] -> [Expr] -> [Expr]express Data.Express.Basic Lists valid applications between lists of Exprs
> [notE, plus] >$$< [false, true, zero] [not False :: Bool,not True :: Bool,(0 +) :: Int -> Int]
-
express Data.Express.Core function application between expressions