Returns a subsequence, up to the specified maximum length, containing the initial elements of the collection.
SDK
- Xcode 9.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 starting at the beginning of this 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(k), where k is the number of elements to select from the beginning of the collection.