Why isn't `SortedSet` an instance of `Seq`?

It seems to fit the contract of Seq i.e. having a defined order of iteration. So why doesn’t it implement it?

Hello,

Seq[T] extends Int => T, while Set[T] extends T => Boolean, and you can’t
extend the same type with different parameters.

 Best, Oliver

Ah, type erasure bites again. Really wish there was a good wayt to encode reified generics on JVM.