Returns a sequence containing all but the given number of final elements.
SDK
- Xcode 10.2+
Framework
- Swift Standard Library
Declaration
Parameters
n
The number of elements to drop off the end of the sequence.
n
must be greater than or equal to zero.
Return Value
A sequence leaving off the specified number of elements.
Discussion
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.
Complexity: O(n), where n is the length of the sequence.