Example #1
0
 /// <summary>Invokes a delegate for each entry in the data structure.</summary>
 /// <param name="step_function">The delegate to invoke on each item in the structure.</param>
 /// <returns>The resulting status of the iteration.</returns>
 public StepStatus Stepper(StepBreak <T> step_function)
 {
     return(_tree.Keys(step_function));
 }
Example #2
0
 /// <summary>Steps through all the nodes in the <see cref="GraphMap{T}"/></summary>
 /// <param name="step">The action to perform on every node in the graph.</param>
 public void Stepper(Action <T> step) =>
 _map.Keys(step);
Example #3
0
 /// <summary>Invokes a delegate for each entry in the data structure.</summary>
 /// <param name="step">The delegate to invoke on each item in the structure.</param>
 public void Stepper(Step <T> step)
 {
     _tree.Keys(step);
 }