Returns a Boolean value indicating whether this sequence and another sequence contain the same elements in the same order.
SDK
- Xcode 11.0+
Framework
- Swift Standard Library
Declaration
Parameters
other
A sequence to compare to this sequence.
Return Value
true
if this sequence and other
contain the same elements in the same order.
Discussion
At least one of the sequences must be finite.
This example tests whether one countable range shares the same elements as another countable range and an array.
Complexity: O(m), where m is the lesser of the length of the sequence and the length of other
.