(func(name1, name2 string, domain ...string) bool)
| 25 | // This is used to build the adjacency graph for cycle detection. |
| 26 | type rangeableRM interface { |
| 27 | Range(func(name1, name2 string, domain ...string) bool) |
| 28 | } |
| 29 | |
| 30 | // DefaultDetector is the default implementation of the Detector interface. |
no outgoing calls
no test coverage detected