ChainedRewriteRules

case class ChainedRewriteRules[T](rules: Seq[RewriteRule[T]]) extends T => RewriteAction[T]

Chains the specified rewrite rules so that they get applied to matching elements in the order specified in the given sequence.

trait Serializable
trait Product
trait Equals
trait T => RewriteAction[T]
class Object
trait Matchable
class Any

Value members

Concrete methods

def apply(element: T): RewriteAction[T]

Inherited methods

@unspecialized
def andThen[A](g: RewriteAction[T] => A): T => A
Inherited from:
Function1
@unspecialized
def compose[A](g: A => T): A => RewriteAction[T]
Inherited from:
Function1
def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product
override def toString(): String
Definition Classes
Function1 -> Any
Inherited from:
Function1