The number of elements to drop off the end of the collection. k
must be greater than or equal to zero.
コレクションの終わりで省く要素の数。k
は、ゼロより大きいまたは等しくなければなりません。
Instance Method
インスタンスメソッド
drop
dropLast(_:)
Returns a subsequence containing all but the specified number of final 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 dropLast(_ k: Int
) -> Slice
<AttributedString
.CharacterView
>
Parameters パラメータ
k
Return Value 戻り値
A subsequence that leaves off k
elements from the end.
ある下位シーケンス、それはk
個の要素を終わりから取り除いたものです。
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.
計算量:O(1)、もしコレクションがRandom
に準拠するならば;そうでなければ、O(k)、ここでkは除外する要素の数です。