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. (&&&!) :: (a -> b) -> (a -> c) -> a -> (b, c)

    netwire Control.Wire.Core

    Left-strict version of &&& for functions.

  2. (&>) :: forall (m :: Type -> Type) s e a b . Monad m => Wire s e m a (Event b) -> Wire s e m a (Event b) -> Wire s e m a (Event b)

    netwire Control.Wire.Event

    Merge events with the rightmost event taking precedence. Equivalent to using the monoid interface with Last. Infixl 5.

    • Depends: now on both.
    • Inhibits: when any of the two wires inhibit.

  3. (&&) :: Boolean a => a -> a -> a

    Agda Agda.Utils.Boolean

    No documentation available.

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

    Agda Agda.Utils.Lens

    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.

  5. (&&*) :: Boolean b => b -> b -> b

    Boolean Data.Boolean

    No documentation available.

  6. (&&) :: Boolean a => a -> a -> a

    Boolean Data.Boolean.Overload

    No documentation available.

  7. (&?) :: Mass Bool -> Mass Bool -> Mass Bool

    approximate Data.Approximate.Mass

    Calculate the logical and of two booleans with confidence lower bounds.

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

    clash-prelude Clash.HaskellPrelude

    No documentation available.

  9. (&&) :: Boolean b => b -> b -> b

    cond Data.Algebra.Boolean

    Logical conjunction. (infixr 3)

  10. (&|) :: forall (m :: Type -> Type) a b u v c r . Monad m => Pipe a b u m v -> Pipe b c v m r -> Pipe a c u m (v, r)

    conduino Data.Conduino

    Like .|, but get the result of both pipes on termination, instead of just the second. This means that p &| q will only terminate with a result when both p and q terminate. (Typically, p .| q would terminate as soon as q terminates.)

Page 20 of many | Previous | Next