The number of elements to drop from the beginning of the collection. k
must be greater than or equal to zero.
コレクションの始まりから省く要素の数。k
は、ゼロより大きいまたは等しくなければなりません。
Instance Method
インスタンスメソッド
drop
dropFirst(_:)
Returns a subsequence containing all but the given number of initial elements.
指定された数の冒頭要素以外すべてを含んでいる下位シーケンスを返します。
Availability 有効性
- iOS 15.0+
- iPadOS 15.0+
- macOS 12.0+
- Mac Catalyst 15.0+
- tvOS 15.0+
- watchOS 8.0+
- Xcode 13.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
func dropFirst(_ k: Int
= 1) -> Slice
<AttributedString
.Runs
.AttributesSlice1
<T>>
Parameters パラメータ
k
Return Value 戻り値
A subsequence starting after the specified number of elements. 指定された数の要素の後から始まる下位シーケンス。
Discussion 議論
If the number of elements to drop exceeds the number of elements in the collection, the result is an empty subsequence. 省かれることになる要素の数がコレクションの要素の数を超えるならば、結果は空の下位シーケンスになります。
Complexity: O(1) if the collection conforms to Random
; otherwise, O(k), where k is the number of elements to drop from the beginning of the collection.
計算量:O(1)、もしコレクションがRandom
に準拠するならば;そうでなければ、O(k)、ここでkはコレクションの冒頭から除外する要素の数です。