(v1, v2 graph.Vertex)
| 211 | } |
| 212 | |
| 213 | func DefaultLess(v1, v2 graph.Vertex) bool { |
| 214 | o1, ok1 := v1.(*ObjectVertex) |
| 215 | o2, ok2 := v2.(*ObjectVertex) |
| 216 | if !ok1 || !ok2 { |
| 217 | return false |
| 218 | } |
| 219 | return o1.String() < o2.String() |
| 220 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…