示例#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);