Hoogle Search

Within LTS Haskell 24.51 (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. (-&&-) :: Script () -> Script () -> Script ()

    shell-monad Control.Monad.Shell

    ANDs two Scripts.

  8. (<&) :: (Script (), Fd) -> Fd -> Script ()

    shell-monad Control.Monad.Shell

    Redirects the first file descriptor to input from the second. For example, to read from Fd 42:

    cmd "foo" &stdInput<&Fd 42
    

  9. (>&) :: (Script (), Fd) -> Fd -> Script ()

    shell-monad Control.Monad.Shell

    Redirects the first file descriptor to output to the second. For example, to redirect a command's stderr to stdout:

    cmd "foo" &stdError>&stdOutput
    

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

Page 45 of many | Previous | Next