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.

  1. (!$) :: Match a -> CaptureID -> Capture a

    regex Text.RE.Replace

    an alternative for capture

  2. (!$$) :: Match a -> CaptureID -> a

    regex Text.RE.Replace

    an alternative for captureText

  3. (!$$?) :: Match a -> CaptureID -> Maybe a

    regex Text.RE.Replace

    an alternative for captureTextMaybe

  4. (!$?) :: Match a -> CaptureID -> Maybe (Capture a)

    regex Text.RE.Replace

    an alternative for capture captureMaybe

  5. (.$) :: forall (l :: Symbol) (r' :: Row Type) t (r :: Row Type) x . (KnownSymbol l, (r' .! l) ≈ t) => (Rec ((l .== t) .+ r) -> x) -> (Label l, Rec r') -> Rec r -> x

    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 like
    greeting = #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!"
    

  6. (<$:) :: (CFunctor f, Dom f a, Dom f b) => a -> f b -> f a

    subcategories Control.Subcategory.Functor

    No documentation available.

  7. (<$:>) :: (CFunctor f, Dom f a, Dom f b) => (a -> b) -> f a -> f b

    subcategories Control.Subcategory.Functor

    No documentation available.

  8. (:$$$:) :: forall (docl :: Doc Symbol) (docr :: Doc Symbol) . SDoc docl -> SDoc docr -> SDoc (docl ':$$: docr)

    type-level-show TypeLevelShow.Doc

    No documentation available.

  9. (:$$:) :: Doc s -> Doc s -> Doc s

    type-level-show TypeLevelShow.Doc

    stack docs on top of each other (newline)

  10. (:$<>:) :: forall (docl :: Doc Symbol) (docr :: Doc Symbol) . SDoc docl -> SDoc docr -> SDoc (docl ':<>: docr)

    type-level-show TypeLevelShow.Doc

    No documentation available.

Page 67 of many | Previous | Next