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.
(
<&> ) :: Functor f => f a -> (a -> b) -> f bprotolude Protolude.Functor 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
(
*& ) :: (C u, C a) => a -> T u a -> T u anumeric-prelude Number.DimensionTerm No documentation available.
(
%&& ) :: forall (a :: Bool) (b :: Bool) . BoolRepr a -> BoolRepr b -> BoolRepr (a && b)parameterized-utils Data.Parameterized.BoolRepr Conjunction
(
<&&> ) :: Applicative a => a Bool -> a Bool -> a Boolclassy-prelude ClassyPrelude && lifted to an Applicative.
(
<&> ) :: Functor f => f a -> (a -> b) -> f bclassy-prelude ClassyPrelude 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
(
<&> ) :: SqlExpr (Insertion (a -> b)) -> SqlExpr (Value a) -> SqlExpr (Insertion b)esqueleto Database.Esqueleto Apply extra SqlExpr Value arguments to a PersistField constructor
-
esqueleto Database.Esqueleto.Experimental A left-precedence pair. Pronounced "and". Used to represent expressions that have been joined together. The precedence behavior can be demonstrated by:
a :& b :& c == ((a :& b) :& c)
See the examples at the beginning of this module to see how this operator is used in JOIN operations. -
esqueleto Database.Esqueleto.Experimental No documentation available.
(
<&> ) :: SqlExpr (Insertion (a -> b)) -> SqlExpr (Value a) -> SqlExpr (Insertion b)esqueleto Database.Esqueleto.Experimental Apply extra SqlExpr Value arguments to a PersistField constructor
-
esqueleto Database.Esqueleto.Experimental.From.Join A left-precedence pair. Pronounced "and". Used to represent expressions that have been joined together. The precedence behavior can be demonstrated by:
a :& b :& c == ((a :& b) :& c)
See the examples at the beginning of this module to see how this operator is used in JOIN operations.