Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
(
!$ ) :: 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.
(
<$:> ) :: (CFunctor f, Dom f a, Dom f b) => (a -> b) -> f a -> f bsubcategories Control.Subcategory.Functor No documentation available.
-
type-level-show TypeLevelShow.Doc No documentation available.
(
:$$: ) :: Doc s -> Doc s -> Doc stype-level-show TypeLevelShow.Doc stack docs on top of each other (newline)
-
type-level-show TypeLevelShow.Doc No documentation available.