Instance Method インスタンスメソッド

dropLast(_:)

Returns a subsequence containing all but the specified number of final elements. 指定された数の末尾要素以外すべてを含んでいる下位シーケンスを返します。

Declaration 宣言

func dropLast(_ k: Int) -> Slice<ReversedCollection<Base>>

Parameters パラメータ

k

The number of elements to drop off the end of the collection. k must be greater than or equal to zero. コレクションの終わりで省く要素の数。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. 省かれることになる要素の数がコレクションの要素の数を越えるならば、結果は空の下位シーケンスです。


let numbers = [1, 2, 3, 4, 5]
print(numbers.dropLast(2))
// Prints "[1, 2, 3]"
print(numbers.dropLast(10))
// Prints "[]"

Complexity: O(1) if the collection conforms to RandomAccessCollection; otherwise, O(k), where k is the number of elements to drop. 計算量:コレクションがRandomAccessCollectionに準拠するならば、O(1);そうでなければ、O(k)、そこでkは除外される要素の数です。