A sequence to compare to this sequence. あるシーケンス、このシーケンスと比べることになります。
Generic Instance Method
総称体インスタンスメソッド
elements
elementsEqual(_:)
Returns a Boolean value indicating whether this sequence and another sequence contain the same elements in the same order.
このシーケンスともう一方のシーケンスが同じ要素を同じ順序で含むかどうかを指し示すブール値を返します。
Availability 有効性
- iOS 7.0+
- iPadOS 7.0+
- macOS 10.9+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 8.3+
Technology
- Foundation ファウンデーション
Declaration 宣言
Parameters パラメータ
other
Return Value 戻り値
true
if this sequence and other
contain the same elements in the same order.
このシーケンスとother
が同じ要素を同じ順序で含んでいるならば、true
。
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
.
計算量:O(m)、ここでmはシーケンスの長さおよびother
の長さより少ないものです。