Scala SeqLike distinct preserves order?

Viewed 3843

The apidoc of distinct in SeqLike says:

Builds a new sequence from this sequence without any duplicate elements. Returns: A new sequence which contains the first occurrence of every element of this sequence.

Do I feel it correct that no ordering guarantee is provided? More generally, do methods of SeqLike provide any process-in-order (and return-in-order) guarantee?

2 Answers
Related