(values []compareResult, value compareResult)
| 485 | } |
| 486 | |
| 487 | func containsValue(values []compareResult, value compareResult) bool { |
| 488 | for _, v := range values { |
| 489 | if v == value { |
| 490 | return true |
| 491 | } |
| 492 | } |
| 493 | |
| 494 | return false |
| 495 | } |
no outgoing calls