(colls []Collection)
| 331 | } |
| 332 | |
| 333 | func multiCollection(colls []Collection) bool { |
| 334 | hash := make(map[string]struct{}, 1) |
| 335 | for _, c := range colls { |
| 336 | if _, ok := hash[c.Name]; !ok { |
| 337 | hash[c.Name] = struct{}{} |
| 338 | } |
| 339 | } |
| 340 | return len(hash) > 1 |
| 341 | } |
no outgoing calls
no test coverage detected