wolfendale
.
scalacheck
.
regexp
ast
package
ast
Visibility
Public
All
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
object
AnyChar
extends
RegularExpression
with
Product
with
Serializable
object
BOS
extends
RegularExpression
with
Product
with
Serializable
object
CharacterClass
extends
Serializable
object
DigitChar
extends
RegularExpression
with
Product
with
Serializable
object
EOS
extends
RegularExpression
with
Product
with
Serializable
object
SpaceChar
extends
RegularExpression
with
Product
with
Serializable
object
WordBoundary
extends
RegularExpression
with
Product
with
Serializable
object
WordChar
extends
RegularExpression
with
Product
with
Serializable
Ungrouped