libghc-regex-tdfa-doc

Haskell library for a tagged dfa regex engine; documentation
  http://hackage.haskell.org/package/regex-tdfa
  0
  no reviews



A pure haskell alternative to ghc's text.regex module (with some enhancements). the text.regex module marshalls the data back and forth to c-arrays to call libc and this is far too slow (and strict).

this module parses regular expression strings using a parsec parser and creates an internal data structure (text.regex.lazy.pattern). this is then transformed a dfa table for matching against the input string or fastpackedstring. the input string is consumed lazily, so it may be an arbitrarily long or infinite source.

this package provides the documentation for a library for the haskell programming language. see http://www.haskell.org/ for more information on haskell.