A sequence to compare to this sequence. あるシーケンス、このシーケンスと比べることになります。
starts(with:)
Availability
- iOS 13.0+
- iPadOS 13.0+
- macOS 10.15+
- Mac Catalyst 15.4+
- tvOS 13.0+
- watchOS 6.0+
- Xcode 11.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
Parameters パラメータ
possiblePrefix
Return Value 戻り値
true
if the initial elements of the sequence are the same as the elements of possible
; otherwise, false
. If possible
has no elements, the return value is true
.
true
、もしシーケンスの冒頭の要素がpossible
の要素と同じならば;そうでなければfalse
。possible
が1つも要素を持たないならば、戻り値はtrue
です。
Discussion 解説
This example tests whether one countable range begins with the elements of another countable range. この例は、ある可付番範囲が別の可付番範囲の要素で始まるかどうかテストします。
Passing a sequence with no elements or an empty collection as possible
always results in true
.
1つの要素もないシーケンスまたは空のコレクションをpossible
として渡すことは、常にtrue
という結果になります。
Complexity: O(m), where m is the lesser of the length of the sequence and the length of possible
.
計算量:O(m)、ここでmはシーケスの長さとpossible
の長さのより短い方です。