Packages

package ast

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. case class And(t1: RegularExpression, t2: RegularExpression) extends RegularExpression with Product with Serializable
  2. case class CharacterClass(terms: Term*) extends RegularExpression with Product with Serializable
  3. case class Group(term: RegularExpression) extends RegularExpression with Product with Serializable
  4. case class Length(term: RegularExpression, min: Int) extends Quantified with Product with Serializable
  5. case class Literal(value: String) extends RegularExpression with Product with Serializable
  6. case class Negated(term: RegularExpression) extends RegularExpression with Product with Serializable
  7. case class NonCapturingGroup(term: RegularExpression) extends RegularExpression with Product with Serializable
  8. case class OneOrMore(term: RegularExpression) extends Quantified with Product with Serializable
  9. case class Optional(term: RegularExpression) extends Quantified with Product with Serializable
  10. case class Or(t1: RegularExpression, t2: RegularExpression) extends RegularExpression with Product with Serializable
  11. sealed trait Quantified extends RegularExpression
  12. case class Range(term: RegularExpression, min: Int, max: Int) extends Quantified with Product with Serializable
  13. case class RangeFrom(term: RegularExpression, min: Int) extends Quantified with Product with Serializable
  14. sealed trait RegularExpression extends AnyRef
  15. case class Substitution(index: Int) extends RegularExpression with Product with Serializable
  16. case class ZeroOrMore(term: RegularExpression) extends Quantified with Product with Serializable

Value Members

  1. object AnyChar extends RegularExpression with Product with Serializable
  2. object BOS extends RegularExpression with Product with Serializable
  3. object CharacterClass extends Serializable
  4. object DigitChar extends RegularExpression with Product with Serializable
  5. object EOS extends RegularExpression with Product with Serializable
  6. object SpaceChar extends RegularExpression with Product with Serializable
  7. object WordBoundary extends RegularExpression with Product with Serializable
  8. object WordChar extends RegularExpression with Product with Serializable

Ungrouped