DomFilter

Use this to filter html

Constructors

this
this(string[] expressions)

A dominator specific array of filter expressions

this
this(string expression)

A dominator specific filter expression

Members

Functions

empty
bool empty()

Checks if there are any TagElements. in other words: Checks if the DomFilter is loaded with some filterarguments or not.

followers
size_t followers()

The number of following TagElements after the current TagElement

front
TagElement front()

The current TagElement, which is under the cursor. if there is no TagElement, then a empty TagElement will be returned.

next
bool next()

Moves the cursor to the next TagElement if exists

opApply
int opApply(int delegate(ref TagElement) dg)

opApply on TagElements

parseAttributexpression
Attribute[] parseAttributexpression(string expression)

parses the attribute filter expression and boxes it into an handy array of Attribute

Variables

elements
TagElement[] elements;
Undocumented in source.
i
size_t i;
Undocumented in source.

Meta