Merge pull request #548 from mappu/patch-1

idset.go: micro-optimise away redundant scan
This commit is contained in:
Alexander Neumann 2016-07-28 20:05:23 +02:00
commit e1960cadb2

View file

@ -55,11 +55,7 @@ func (s IDSet) Equals(other IDSet) bool {
}
}
for id := range other {
if _, ok := s[id]; !ok {
return false
}
}
// length + one-way comparison is sufficient implication of equality
return true
}