You cannot operator ==
for tuple.
1 == 2 // false
(1, 2) == (1, 3) // Could not find an overload for '==' that accepts the supplied arguments
However you can write same code in Scala.
1 == 2 // false
(1, 2) == (1, 3) // false
Though, the most use case of tuple is returning multiple values from some function. I think if I can compare tuple data in more simple way, it will be nice feature of Swift.