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.
(
<&&> ) :: Applicative f => f Bool -> f Bool -> f Boolghc GHC.Utils.Misc No documentation available.
-
haskell-gi-base Data.GI.Base Assign a value to an attribute, allocating any necessary memory for representing the Haskell value as a C value. Note that it is the responsibility of the caller to make sure that the memory is freed when no longer used, otherwise there will be a memory leak. In the majority of cases you probably want to use := instead, which has no potential memory leaks (at the cost of sometimes requiring some explicit Haskell -> C marshalling).
-
haskell-gi-base Data.GI.Base.Attributes Assign a value to an attribute, allocating any necessary memory for representing the Haskell value as a C value. Note that it is the responsibility of the caller to make sure that the memory is freed when no longer used, otherwise there will be a memory leak. In the majority of cases you probably want to use := instead, which has no potential memory leaks (at the cost of sometimes requiring some explicit Haskell -> C marshalling).
-
haskell-gi-base Data.GI.Base.ShortPrelude Assign a value to an attribute, allocating any necessary memory for representing the Haskell value as a C value. Note that it is the responsibility of the caller to make sure that the memory is freed when no longer used, otherwise there will be a memory leak. In the majority of cases you probably want to use := instead, which has no potential memory leaks (at the cost of sometimes requiring some explicit Haskell -> C marshalling).
-
optics-core Optics.Internal.Optic Flipped function application, specialised to optics and binding tightly. Useful for post-composing optics transformations:
>>> toListOf (ifolded %& ifiltered (\i s -> length s <= i)) ["", "a","abc"] ["","a"]
-
optics-core Optics.Optic Flipped function application, specialised to optics and binding tightly. Useful for post-composing optics transformations:
>>> toListOf (ifolded %& ifiltered (\i s -> length s <= i)) ["", "a","abc"] ["","a"]
(
<&> ) :: Functor f => f a -> (a -> b) -> f boptics-core Optics.Optic 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
(
:&: ) :: Selector -> Selector -> Selectormarkdown-unlit Text.Markdown.Unlit No documentation available.
(
<&> ) :: Functor f => f a -> (a -> b) -> f brio RIO.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
-
diagrams-lib Diagrams.Coordinates A pair of values, with a convenient infix (left-associative) data constructor.