()
| 948 | } |
| 949 | |
| 950 | func (s nodeSorter) Len() int { return len(s.rs) } |
| 951 | func (s nodeSorter) Swap(i, j int) { s.rs[i], s.rs[j] = s.rs[j], s.rs[i] } |
| 952 | func (s nodeSorter) Less(i, j int) bool { return s.less(s.rs[i], s.rs[j]) } |
| 953 |
nothing calls this directly
no outgoing calls
no test coverage detected