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 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.2+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
func elementsEqual<OtherSequence >(_ other: OtherSequence ) -> Bool
where OtherSequence : Sequence
, Iterator
.Element
== OtherSequence .Element
Available when
PrefixSequence<Base>.Iterator.Element
conforms to Equatable
.
PrefixSequence<Base>.Iterator.Element
がEquatable
に準拠する時に利用可能です。
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
の長さのより短い方です。