Removes the given number of elements from the end of the collection.
SDK
- Xcode 8.0+
Framework
- Swift Standard Library
Declaration
Available when Self is Sub Sequence.
Parameters
k
The number of elements to remove.
k
must be greater than or equal to zero, and must be less than or equal to the number of elements in the collection.
Discussion
Complexity: O(1) if the collection conforms to Random
; otherwise, O(k), where k is the number of elements to remove.