Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

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

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

    classy-prelude-yesod ClassyPrelude.Yesod

    && lifted to an Applicative.

  2. (<&>) :: 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
    

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

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

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

    composition-extra Data.Functor.Syntax

    No documentation available.

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

    composition-extra Data.Functor.Syntax

    No documentation available.

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

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

    control-bool Control.Bool

    A lifted (&&).

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

    control-bool Control.Bool

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

  10. (.&.) :: Bits a => a -> a -> a

    copilot-language Copilot.Language.Operators.BitWise

    Bitwise "and"

Page 44 of many | Previous | Next