ChainedRewriteRules

laika.ast.RewriteRules$.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.

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait T => RewriteAction[T]
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

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

Inherited methods

def andThen[A](g: RewriteAction[T] => A): T1 => A

Attributes

Inherited from:
Function1
def compose[A](g: A => T): A => R

Attributes

Inherited from:
Function1
def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product
override def toString(): String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Function1 -> Any
Inherited from:
Function1