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.
(
-&&- ) :: Expr -> Expr -> Exprcode-conjure Conjure.Expr The function && lifted over the Expr type.
> pp -&&- qq p && q :: Bool
> false -&&- true False && True :: Bool
> evalBool $ false -&&- true False
(
<&&> ) :: (ToBool bool, Boolean bool, Monad m) => m bool -> m bool -> m boolcond Control.Conditional Lifted conjunction. Unlike liftM2 (&&), this function is short-circuiting in the monad. Fixity is the same as && (infxr 3).
(
<&> ) :: Functor f => f a -> (a -> b) -> f bconfiguration-tools Configuration.Utils.Internal Flipped version of <$>.
(<&>) = flip fmap
Examples
Apply (+1) to a list, a Just and a Right:>>> Just 2 <&> (+1) Just 3
>>> [1,2,3] <&> (+1) [2,3,4]
>>> Right 3 <&> (+1) Right 4
(
-&&- ) :: Expr -> Expr -> Exprextrapolate Test.Extrapolate.Expr The function && lifted over the Expr type.
> pp -&&- qq p && q :: Bool
> false -&&- true False && True :: Bool
> evalBool $ false -&&- true False
class (c1 a, c2 a) => ((c1 :: k -> Constraint)
:&&: (c2 :: k -> Constraint)) (a :: k)fixed-vector-hetero Data.Vector.HFixed.Class Type class for combining two constraint constructors. Those are required for ArityC type class.
-
ghci-hexcalc Data.GHex Bitwise "and"
>>> 0x1234 .& 0xff 0x0000_0000_0000_0034
(
<&> ) :: Functor f => f a -> (a -> b) -> f bgithub GitHub.Internal.Prelude Flipped version of <$>.
(<&>) = flip fmap
Examples
Apply (+1) to a list, a Just and a Right:>>> Just 2 <&> (+1) Just 3
>>> [1,2,3] <&> (+1) [2,3,4]
>>> Right 3 <&> (+1) Right 4
(
.&& ) :: LogicalOp b => b -> b -> bgrisette Grisette.Core Symbolic conjunction
(
.&& ) :: LogicalOp b => b -> b -> bgrisette Grisette.Internal.Core.Data.Class.LogicalOp Symbolic conjunction
(
.<&> ) :: (TryMerge f, Mergeable a, Mergeable b, Functor f) => f a -> (a -> b) -> f bgrisette Grisette.Lib.Data.Functor <&> with MergingStrategy knowledge propagation.