Returns a subsequence, up to the given maximum length, containing the final elements of the collection.
SDK
- Xcode 8.0+
Framework
- Swift Standard Library
Declaration
Parameters
maxLength
The maximum number of elements to return.
max
must be greater than or equal to zero.Length
Return Value
A subsequence terminating at the end of the collection with at most max
elements.
Discussion
If the maximum length exceeds the number of elements in the collection, the result contains the entire collection.
Complexity: O(1) if the collection conforms to Random
; otherwise, O(k), where k is equal to max
.