Struct datafrog::Iteration[][src]

pub struct Iteration { /* fields omitted */ }

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.

Methods

impl Iteration
[src]

Create a new iterative context.

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

Creates a new named variable associated with the iterative context.

Creates a new named variable associated with the iterative context.

This variable will not be maintained distinctly, and may advertise tuples as recent multiple times (perhaps unboundedly many times).

Auto Trait Implementations

impl !Send for Iteration

impl !Sync for Iteration