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

    classy-prelude-yesod ClassyPrelude.Yesod

    Boolean "and", lazy in the second argument

  2. (&&&) :: Arrow a => a b c -> a b c' -> a b (c, c')

    classy-prelude-yesod ClassyPrelude.Yesod

    Fanout: send the input to both argument arrows and combine their output. The default definition may be overridden with a more efficient version if desired.

  3. (&:) :: (b -> b -> c) -> (a -> b) -> a -> a -> c

    composition-prelude Control.Composition

    Pronounced 'appose'. Synonym for on

  4. (&&&) :: (PreArrow a, Object a b, ObjectPair a c c') => a b c -> a b c' -> a b (c, c')

    constrained-categories Control.Arrow.Constrained

    No documentation available.

  5. (&&) :: Bool -> Bool -> Bool

    constrained-categories Control.Category.Constrained.Prelude

    Boolean "and", lazy in the second argument

  6. (&&) :: Bool -> Bool -> Bool

    constrained-categories Control.Category.Hask

    Boolean "and", lazy in the second argument

  7. (&&) :: Stream Bool -> Stream Bool -> Stream Bool

    copilot-language Copilot.Language.Operators.Boolean

    Apply the and (&&) operator to two boolean streams, point-wise.

  8. (&&) :: Bool -> Bool -> Bool

    verset Verset

    Boolean "and", lazy in the second argument

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

    verset Verset

    The lazy && operator lifted to a monad. If the first argument evaluates to False the second argument will not be evaluated.

    Just False &&^ undefined  == Just False
    Just True  &&^ Just True  == Just True
    Just True  &&^ Just False == Just False
    

  10. (&&) :: Bool -> Bool -> Bool

    xmonad-contrib XMonad.Config.Prime

    Boolean "and", lazy in the second argument

Page 24 of many | Previous | Next