SymmetricDifference returns a new set which s is the difference of items which are in one of either, but not in both.
(s Set, t Set)
| 320 | // SymmetricDifference returns a new set which s is the difference of items |
| 321 | // which are in one of either, but not in both. |
| 322 | func SymmetricDifference(s Set, t Set) Set { |
| 323 | u := Difference(s, t) |
| 324 | v := Difference(t, s) |
| 325 | return Union(u, v) |
| 326 | } |
nothing calls this directly
no test coverage detected