package ast
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- case class And(t1: RegularExpression, t2: RegularExpression) extends RegularExpression with Product with Serializable
- case class CharacterClass(terms: Term*) extends RegularExpression with Product with Serializable
- case class Group(term: RegularExpression) extends RegularExpression with Product with Serializable
- case class Length(term: RegularExpression, min: Int) extends Quantified with Product with Serializable
- case class Literal(value: String) extends RegularExpression with Product with Serializable
- case class Negated(term: RegularExpression) extends RegularExpression with Product with Serializable
- case class NonCapturingGroup(term: RegularExpression) extends RegularExpression with Product with Serializable
- case class OneOrMore(term: RegularExpression) extends Quantified with Product with Serializable
- case class Optional(term: RegularExpression) extends Quantified with Product with Serializable
- case class Or(t1: RegularExpression, t2: RegularExpression) extends RegularExpression with Product with Serializable
- sealed trait Quantified extends RegularExpression
- case class Range(term: RegularExpression, min: Int, max: Int) extends Quantified with Product with Serializable
- case class RangeFrom(term: RegularExpression, min: Int) extends Quantified with Product with Serializable
- sealed trait RegularExpression extends AnyRef
- case class Substitution(index: Int) extends RegularExpression with Product with Serializable
- case class ZeroOrMore(term: RegularExpression) extends Quantified with Product with Serializable
Value Members
- case object AnyChar extends RegularExpression with Product with Serializable
- case object BOS extends RegularExpression with Product with Serializable
- object CharacterClass extends Serializable
- case object DigitChar extends RegularExpression with Product with Serializable
- case object EOS extends RegularExpression with Product with Serializable
- case object SpaceChar extends RegularExpression with Product with Serializable
- case object WordBoundary extends RegularExpression with Product with Serializable
- case object WordChar extends RegularExpression with Product with Serializable