(values []compareResult, value compareResult)
| 479 | } |
| 480 | |
| 481 | func containsValue(values []compareResult, value compareResult) bool { |
| 482 | for _, v := range values { |
| 483 | if v == value { |
| 484 | return true |
| 485 | } |
| 486 | } |
| 487 | |
| 488 | return false |
| 489 | } |
no outgoing calls
searching dependent graphs…