ForEachPath 遍历依赖图路径
(do func(p, n *DepGraph) bool)
| 322 | |
| 323 | // ForEachPath 遍历依赖图路径 |
| 324 | func (dep *DepGraph) ForEachPath(do func(p, n *DepGraph) bool) { |
| 325 | dep.ForEach(false, true, false, do) |
| 326 | } |
| 327 | |
| 328 | // ForEachNode 遍历依赖图节点 |
| 329 | func (dep *DepGraph) ForEachNode(do func(p, n *DepGraph) bool) { |
no test coverage detected