Hoogle Search

Within LTS Haskell 24.31 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. (<$>) :: Doc -> Doc -> Doc

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

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

  2. (<$$>) :: 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 linebreak in between. (infixr 5)

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

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

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

    dhall Dhall.Marshal.Encode

    This is an infix alias for contramap.

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

    express Data.Express

    function application between expressions

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

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

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

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

Page 61 of many | Previous | Next