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

    copilot-language Copilot.Language.Operators.BitWise

    Bitwise "and"

  2. (.&.) :: (IsPath a, IsPath b) => a -> b -> Path

    funcmp FMP.Picture

    No documentation available.

  3. (.&) :: Expr -> Expr -> Expr

    language-c99-simple Language.C99.Simple.Expr

    No documentation available.

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

    language-c99-simple Language.C99.Simple.Expr

    No documentation available.

  5. (.&=) :: Expr -> Expr -> Expr

    language-c99-simple Language.C99.Simple.Expr

    No documentation available.

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

    quaalude Essentials

    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
    

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

    verset Verset

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

    xmonad-contrib XMonad.Actions.CycleWS

    cycle through workspaces satisfying both predicates.

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

    xmonad-contrib XMonad.Config.Prime

    && lifted to a Monad.

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

    xmonad-contrib XMonad.Prelude

    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
    

Page 45 of many | Previous | Next