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. (.&.) :: (IsPath a, IsPath b) => a -> b -> Path

    funcmp FMP.Picture

    No documentation available.

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

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

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

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

  7. (:&:) :: WSType -> WSType -> WSType

    xmonad-contrib XMonad.Actions.CycleWS

    cycle through workspaces satisfying both predicates.

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

  9. (>&&>) :: X Input -> X Input -> X Input

    xmonad-contrib XMonad.Util.Run

    a >&&> b glues the different inputs a and b by means of &&. For example,

    pure "do something" >&&> pure "do another thing"
    
    would result in do something && do another thing being executed by a shell.

Page 45 of many | Previous | Next