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.
data ((a :: Predicate k)
&&& (b :: Predicate k)) (c :: TyFun k Type)decidable Data.Type.Predicate.Logic p &&& q is a predicate that both p and q are true.
-
dimensional Numeric.Units.Dimensional.Prelude Boolean "and", lazy in the second argument
-
distribution-opensuse OpenSuse.Prelude Boolean "and", lazy in the second argument
(
&&^ ) :: Monad m => m Bool -> m Bool -> m Booldistribution-opensuse OpenSuse.Prelude 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
(
&&& ) :: Arrow a => a b c -> a b c' -> a b (c, c')dunai Data.MonadicStreamFunction.Core 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.
(
&|& ) :: forall (m :: Type -> Type) a b c . Monad m => MSF m a b -> MSF m a c -> MSF m a (b, c)dunai Data.MonadicStreamFunction.Parallel Parallel version of &&&.
(
&& ) :: Boolean b => b -> b -> bersatz Ersatz.Bit Logical conjunction.
-
faktory Faktory.Prelude Boolean "and", lazy in the second argument
type (p :: k)
&& (q :: k1) = And p qgdp Logic.Propositional An infix alias for And.
(
&. ) :: GTraversal c a b -> Walk c b d -> GTraversal c a dgreskell Data.Greskell Apply the Walk to the GTraversal. In Gremlin, this means calling a chain of methods on the Traversal object.