normFirst := normalize(first)
for _, other := range others {
if e, ok := first.(compare.Eqer); ok {
- return e.Eq(other)
+ if e.Eq(other) {
+ return true
+ }
+ continue
}
if e, ok := other.(compare.Eqer); ok {
- return e.Eq(first)
+ if e.Eq(first) {
+ return true
+ }
+ continue
}
other = normalize(other)
{1, []interface{}{1, 2}, true},
{1, []interface{}{2, 1}, true},
{1, []interface{}{2, 3}, false},
+ {tstEqerType1("a"), []interface{}{tstEqerType1("a"), tstEqerType1("b")}, true},
+ {tstEqerType1("a"), []interface{}{tstEqerType1("b"), tstEqerType1("a")}, true},
+ {tstEqerType1("a"), []interface{}{tstEqerType1("b"), tstEqerType1("c")}, false},
} {
result := ns.Eq(test.first, test.others...)