Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. POr :: [Pattern] -> Pattern

    regex-tdfa Text.Regex.TDFA.Pattern

    Alternative r|s (flattened by starTrans).

  2. PPlus :: Pattern -> Pattern

    regex-tdfa Text.Regex.TDFA.Pattern

    One or more repetitions r+ (eliminated by starTrans).

  3. PQuest :: Pattern -> Pattern

    regex-tdfa Text.Regex.TDFA.Pattern

    Zero or one repetitions r? (eliminated by starTrans).

  4. PStar :: Bool -> Pattern -> Pattern

    regex-tdfa Text.Regex.TDFA.Pattern

    Zero or more repetitions r*. True (default) means may accept the empty string on its first iteration.

  5. data Pattern

    regex-tdfa Text.Regex.TDFA.Pattern

    Pattern is the type returned by the regular expression parser parseRegex. This is consumed by the Text.Regex.TDFA.CorePattern module and the tender leaves are nibbled by the Text.Regex.TDFA.TNFA module. The DoPa field is the index of the component in the regex string r.

  6. data PatternSet

    regex-tdfa Text.Regex.TDFA.Pattern

    Content of a bracket expression [...] organized into characters, POSIX character classes (e.g. [[:alnum:]]), collating elements (e.g. [.ch.], unused), and equivalence classes (e.g. [=a=], treated as characters).

  7. PatternSet :: Maybe (Set Char) -> Maybe (Set PatternSetCharacterClass) -> Maybe (Set PatternSetCollatingElement) -> Maybe (Set PatternSetEquivalenceClass) -> PatternSet

    regex-tdfa Text.Regex.TDFA.Pattern

    No documentation available.

  8. newtype PatternSetCharacterClass

    regex-tdfa Text.Regex.TDFA.Pattern

    Content of [: :], e.g. "alnum" for [:alnum:].

  9. PatternSetCharacterClass :: String -> PatternSetCharacterClass

    regex-tdfa Text.Regex.TDFA.Pattern

    No documentation available.

  10. newtype PatternSetCollatingElement

    regex-tdfa Text.Regex.TDFA.Pattern

    Content of [. .], e.g. "ch" for [.ch.].

Page 202 of many | Previous | Next