RegExp

silex.RegExps.RegExp
See theRegExp companion class
object RegExp

Contains primitive constructors for regular expressions.

Attributes

Companion
class
Graph
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type
RegExp.type

Members list

Type members

Classlikes

case class Concat(first: RegExp, second: RegExp) extends RegExp

Concatenation of two regular expressions.

Concatenation of two regular expressions.

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
class RegExp
class Object
trait Matchable
class Any
Show all
case class Elem(predicate: Character => Boolean) extends RegExp

Accepts single characters that satisfy a predicate.

Accepts single characters that satisfy a predicate.

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
class RegExp
class Object
trait Matchable
class Any
Show all
case object EmptySet extends RegExp

Never accepts.

Never accepts.

Attributes

Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
class RegExp
class Object
trait Matchable
class Any
Show all
Self type
EmptySet.type
case object EmptyStr extends RegExp

Accepts only the empty word.

Accepts only the empty word.

Attributes

Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
class RegExp
class Object
trait Matchable
class Any
Show all
Self type
EmptyStr.type
case class Star(regExp: RegExp) extends RegExp

Kleene star of a regular expressions.

Kleene star of a regular expressions.

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
class RegExp
class Object
trait Matchable
class Any
Show all
case class Union(left: RegExp, right: RegExp) extends RegExp

Union of two regular expressions.

Union of two regular expressions.

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
class RegExp
class Object
trait Matchable
class Any
Show all

Inherited and Abstract types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Attributes

Inherited from:
Mirror