Iteration

An iterative context for recursive evaluation.

An Iteration tracks monotonic variables, and monitors their progress. It can inform the user if they have ceased changing, at which point the computation should be done.

Members

Functions

changed
bool changed()

Reports whether any of the monitored variables have changed since the most recent call.

range
IteratorRange!(typeof(this)) range()
variable
auto variable(string s)

Creates a new named variable associated with the iterative context.

variableInDistinct
auto variableInDistinct(string s)

Creates a new named variable associated with the iterative context.

Meta