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.

  1. (<$>) :: Applicative m => m Doc -> m Doc -> m Doc

    wl-pprint-text Text.PrettyPrint.Leijen.Text.Monadic

    The document (x <$> y) concatenates document x and y with a line in between. (infixr 5)

  2. (<$) :: (Contiguous arr1, Contiguous arr2, Element arr1 b, Element arr2 a) => a -> arr1 b -> arr2 a

    contiguous Data.Primitive.Contiguous

    Replace all locations in the input with the same value. Equivalent to Data.Functor.<$.

  3. (>$<) :: Contravariant f => (a -> b) -> f b -> f a

    dhall Dhall.Marshal.Encode

    This is an infix alias for contramap.

  4. (:$) :: Expr -> Expr -> Expr

    express Data.Express

    function application between expressions

  5. (>$$) :: [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]
    

  6. (>$$<) :: [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]
    

  7. (>$$) :: [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]
    

  8. (>$$<) :: [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]
    

  9. (:$) :: Expr -> Expr -> Expr

    express Data.Express.Core

    function application between expressions

  10. (-$-) :: Expr -> Expr -> Expr

    express Data.Express.Fixtures

    $ lifted over Exprs

    > absE -$- one
    abs $ 1 :: Int
    
    Works for Int, Bool, Char argument types and their lists.

Page 61 of many | Previous | Next