Esempio n. 1
0
 /// <summary>Steps through all the nodes in the graph.</summary>
 /// <param name="step">The action to perform on all the nodes in the graph.</param>
 public void Stepper(Step <T> step) => _nodes.Stepper(step);
Esempio n. 2
0
 /// <summary>Steps through all the nodes in the graph.</summary>
 /// <param name="step">The action to perform on all the nodes in the graph.</param>
 public void Stepper(Action <T> step) => _nodes.Stepper(step);