Hoogle Search
Within LTS Haskell 24.6 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
(
>$< ) :: Contravariant f => (a -> b) -> f b -> f aincipit-base Incipit.Base This is an infix alias for contramap.
(
|$| ) :: Semigroup t => (a -> b) -> a -> PerfT IO t bperf Perf.Types lift a pure, unnamed function application to PerfT
(
***$ ) :: Profunctor p => (b -> c) -> p a b -> p a cproduct-profunctors Data.Profunctor.Product ***$ is the generalisation of Functor's <$>. ***$ = rmap, just like <$> = fmap. (You probably won't need to use this. <$> should be sufficient.) Since 0.11.1.0: Generalised to work on arbitrary Profunctors.
(
***$ ) :: Profunctor p => (b -> c) -> p a b -> p a cproduct-profunctors Data.Profunctor.Product ***$ is the generalisation of Functor's <$>. ***$ = rmap, just like <$> = fmap. (You probably won't need to use this. <$> should be sufficient.) Since 0.11.1.0: Generalised to work on arbitrary Profunctors.
(
!$ ) :: Match a -> CaptureID -> Capture aregex Text.RE.Replace an alternative for capture
(
!$$ ) :: Match a -> CaptureID -> aregex Text.RE.Replace an alternative for captureText
(
!$$? ) :: Match a -> CaptureID -> Maybe aregex Text.RE.Replace an alternative for captureTextMaybe
(
!$? ) :: Match a -> CaptureID -> Maybe (Capture a)regex Text.RE.Replace an alternative for capture captureMaybe
-
row-types Data.Row.Records This function allows one to do partial application on a function of a record. Note that this also means that arguments can be supplied in arbitrary order. For instance, if one had a function like
xtheny r = (r .! #x) <> (r .! #y)
and a record likegreeting = #x .== "hello " .+ #y .== "world!"
Then all of the following would be possible:>>> xtheny greeting "hello world!"
>>> xtheny .$ (#x, greeting) .$ (#y, greeting) $ empty "hello world!"
>>> xtheny .$ (#y, greeting) .$ (#x, greeting) $ empty "hello world!"
>>> xtheny .$ (#y, greeting) .$ (#x, #x .== "Goodbye ") $ empty "Goodbye world!"
(
<$: ) :: (CFunctor f, Dom f a, Dom f b) => a -> f b -> f asubcategories Control.Subcategory.Functor No documentation available.