Loop

Wrapper representing a loop of tags.

Members

Functions

add
void add(TagCollection!() tags)

Adds an item to the loop.

dup
Loop dup()

Duplicates the original loop.

empty
bool empty()

Boolean determining whether the loop is empty or not.

front
TagCollection!() front()

Gets the current item of the loop.

popFront
void popFront()

Pops the next item of the loop.

Properties

length
size_t length [@property getter]

Gets the amount of items in the loop.

Meta