Returns a subsequence, up to the given maximum length, containing the final elements of the collection.
SDK
- Xcode 11.0+
Framework
- Swift Standard Library
Declaration
Parameters
maxLength
The maximum number of elements to return. The value of
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 all the elements in the collection.
Complexity: O(1) if the collection conforms to Random
; otherwise, O(n), where n is the length of the collection.