예제 #1
0
파일: Graph.cs 프로젝트: pfriesch/Towel
 /// <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);
예제 #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);