Return Value 戻り値
A sequence leaving off the specified number of elements.
Availability 有効性
Technology
func dropLast(_ k: Int
= 1) -> [Self.Element]
A sequence leaving off the specified number of elements.
n
The number of elements to drop off the end of the sequence. n
must be greater than or equal to zero.
The sequence must be finite. If the number of elements to drop exceeds the number of elements in the sequence, the result is an empty sequence.
let numbers = [1, 2, 3, 4, 5]
print(numbers.dropLast(2))
// Prints "[1, 2, 3]"
print(numbers.dropLast(10))
// Prints "[]"
Complexity
O(n), where n is the length of the sequence.