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

    relude Relude.Bool.Reexport

    Boolean "and", lazy in the second argument

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

    relude Relude.Function

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

    first-class-families Fcf

    No documentation available.

  4. data ((a :: Bool) && (b :: Bool)) (c :: Bool)

    first-class-families Fcf.Data.Bool

    No documentation available.

  5. (&>) :: msg -> LogAction m msg -> m ()

    co-log-core Colog.Core.Action

    A flipped version of <&. It shares the same precedence as <&, so make sure to surround lower precedence operators in parentheses:

    msg &> (f >$< action)
    

  6. (&~) :: s -> State s a -> s

    microlens-mtl Lens.Micro.Mtl

    This can be used to chain lens operations using op= syntax rather than op~ syntax for simple non-type-changing cases. >>> (10,20) & _1 .~ 30 & _2 .~ 40 (30,40)

    >>> (10,20) &~ do _1 .= 30; _2 .= 40
    (30,40)
    
    This does not support type-changing assignment, e.g.
    >>> (10,20) & _1 .~ "hello"
    ("hello",20)
    

  7. type family (a :: Bool) && (b :: Bool) :: Bool

    singletons-base Data.Bool.Singletons

    Type-level "and"

  8. data (a6989586621679139151 :: Bool) &&@#@$$ (b :: TyFun Bool Bool)

    singletons-base Data.Bool.Singletons

    No documentation available.

  9. type family (a6989586621679139151 :: Bool) &&@#@$$$ (a6989586621679139152 :: Bool) :: Bool

    singletons-base Data.Bool.Singletons

    No documentation available.

  10. data (a6989586621679334770 :: a) &@#@$$ (b1 :: TyFun a ~> b b)

    singletons-base Data.Function.Singletons

    No documentation available.

Page 10 of many | Previous | Next