dregex

impl

package impl

Visibility
  1. Public
  2. All

Type Members

  1. class Dfa extends StrictLogging

  2. case class GenericDfa[A](initial: A, transitions: Map[A, Map[SglChar, A]], accepting: Set[A]) extends StrictLogging with Product with Serializable

  3. case class Nfa(initial: State, transitions: Map[State, Map[Char, Set[State]]], accepting: Set[State]) extends Product with Serializable

  4. class RegexParser extends JavaTokenParsers

  5. class State extends AnyRef

Value Members

  1. object Condition extends Enumeration

  2. object Dfa extends StrictLogging

  3. object Direction extends Enumeration

  4. object LookaroundExpander extends StrictLogging

    A meta regular expression is the intersection or subtraction of 2 other (meta or simple) regular expressions.

  5. object MetaTrees

  6. object Nfa extends Serializable

    Take a regex AST and produce a NFA.

  7. object NormTree

  8. object Normalizer

    Regular expressions can have character classes and wildcards.

  9. object Operations extends StrictLogging

  10. object Optimizer

  11. object RegexParser extends StrictLogging

  12. object RegexTree

  13. object State

  14. object Util extends StrictLogging

Ungrouped