Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. (&&.) :: SqlExpr (Value Bool) -> SqlExpr (Value Bool) -> SqlExpr (Value Bool)

    esqueleto Database.Esqueleto.Internal.Internal

    This operator translates to the SQL operator AND. Example:

    where_ $
    user ^. UserName ==. val Matt
    &&. user ^. UserAge >=. val 21
    

  2. (&&.) :: SqlExpr (Value Bool) -> SqlExpr (Value Bool) -> SqlExpr (Value Bool)

    esqueleto Database.Esqueleto.Legacy

    This operator translates to the SQL operator AND. Example:

    where_ $
    user ^. UserName ==. val Matt
    &&. user ^. UserAge >=. val 21
    

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

    essence-of-live-coding LiveCoding

    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.

  4. (&&?) :: FindClause Bool -> FindClause Bool -> FindClause Bool

    filemanip System.FilePath.Find

    No documentation available.

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

    ghc-lib-parser GHC.Prelude.Basic

    Boolean "and", lazy in the second argument

  6. (&&) :: forall (m :: Type -> Type) a . Monad m => Predicate m a -> Predicate m a -> Predicate m a

    skeletest Skeletest.Internal.Predicate

    A predicate checking if the input matches both of the given predicates

    >>> 1 `shouldSatisfy` P.gt 0 P.&& P.lt 2
    

  7. (&&) :: forall (m :: Type -> Type) a . Monad m => Predicate m a -> Predicate m a -> Predicate m a

    skeletest Skeletest.Predicate

    A predicate checking if the input matches both of the given predicates

    >>> 1 `shouldSatisfy` P.gt 0 P.&& P.lt 2
    

  8. (&&.) :: BeamSqlBackend be => QGenExpr context be s Bool -> QGenExpr context be s Bool -> QGenExpr context be s Bool

    beam-core Database.Beam.Query

    SQL AND operator

  9. (&&?.) :: BeamSqlBackend be => QGenExpr context be s SqlBool -> QGenExpr context be s SqlBool -> QGenExpr context be s SqlBool

    beam-core Database.Beam.Query

    SQL AND operator for SqlBool

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

    foundation Foundation

    Boolean "and", lazy in the second argument

Page 15 of many | Previous | Next