Hoogle Search

Within LTS Haskell 24.22 (ghc-9.10.3)

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

  1. type (:&) = 'Union

    bluefin Bluefin.Eff

    type (:&) :: Effects -> Effects -> Effects
    
    Union of effects

  2. (<&&>) :: Applicative a => a Bool -> a Bool -> a Bool

    classy-prelude-yesod ClassyPrelude.Yesod

    && lifted to an Applicative.

  3. (<&>) :: Functor f => f a -> (a -> b) -> f b

    classy-prelude-yesod ClassyPrelude.Yesod

    Flipped version of <$>.

    (<&>) = flip fmap
    

    Examples

    Apply (+1) to a list, a Just and a Right:
    >>> Just 2 <&> (+1)
    Just 3
    
    >>> [1,2,3] <&> (+1)
    [2,3,4]
    
    >>> Right 3 <&> (+1)
    Right 4
    

  4. (<&&&&&>) :: (Functor f0, Functor f1, Functor f2, Functor f3, Functor f4) => f4 (f3 (f2 (f1 (f0 a)))) -> (a -> b) -> f4 (f3 (f2 (f1 (f0 b))))

    composition-extra Data.Functor.Syntax

    No documentation available.

  5. (<&&&&>) :: (Functor f0, Functor f1, Functor f2, Functor f3) => f3 (f2 (f1 (f0 a))) -> (a -> b) -> f3 (f2 (f1 (f0 b)))

    composition-extra Data.Functor.Syntax

    No documentation available.

  6. (<&&&>) :: (Functor f0, Functor f1, Functor f2) => f2 (f1 (f0 a)) -> (a -> b) -> f2 (f1 (f0 b))

    composition-extra Data.Functor.Syntax

    No documentation available.

  7. (<&&>) :: (Functor f0, Functor f1) => f1 (f0 a) -> (a -> b) -> f1 (f0 b)

    composition-extra Data.Functor.Syntax

    No documentation available.

  8. (<&>) :: Functor f => f a -> (a -> b) -> f b

    composition-prelude Control.Composition

    Flipped version of <$>.

    (<&>) = flip fmap
    

    Examples

    Apply (+1) to a list, a Just and a Right:
    >>> Just 2 <&> (+1)
    Just 3
    
    >>> [1,2,3] <&> (+1)
    [2,3,4]
    
    >>> Right 3 <&> (+1)
    Right 4
    

  9. (<&&>) :: Applicative f => f Bool -> f Bool -> f Bool

    control-bool Control.Bool

    A lifted (&&).

  10. (<&=>) :: Monad m => m Bool -> m Bool -> m Bool

    control-bool Control.Bool

    A lifted (&&), but short-circuited.

Page 44 of many | Previous | Next