(a, b T)
| 184 | } |
| 185 | |
| 186 | func Descending[T constraints.Ordered](a, b T) int { |
| 187 | return -Ascending[T](a, b) |
| 188 | } |
| 189 | |
| 190 | // SymmetricDifference returns the elements that need to be added and removed |
| 191 | // to get from set 'a' to set 'b'. Note that duplicates are ignored in sets. |
no outgoing calls