Package

dregex

Permalink

package dregex

Main package for Dregex implementation. User-facing classes reside directly in the top-level package. The rest of the sub-packages contain implementation classes.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. dregex
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class CompiledRegex extends Regex

    Permalink

    A fully-compiled regular expression that was generated from a string literal.

  2. class InvalidRegexException extends Exception

    Permalink
  3. trait Regex extends AnyRef

    Permalink

    A regular expression, ready to be tested against strings, or to take part in an operation against another.

    A regular expression, ready to be tested against strings, or to take part in an operation against another. Internally, instances of this type have a DFA (Deterministic Finite Automaton).

  4. class SynteticRegex extends Regex

    Permalink

    A regular expression that was generated by an operation between others (not parsing a string), so it lacks a literal expression or NFA.

  5. class Universe extends AnyRef

    Permalink

    Represent the set of characters that is the union of the sets of characters of a group of regular expressions.

    Represent the set of characters that is the union of the sets of characters of a group of regular expressions. Regex must belong to the same Universe to be able to make operations between them.

Value Members

  1. object Regex

    Permalink

  2. object Universe

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped