Returns a subsequence from the start of the collection up to, but not including, the specified position.
SDK
- Xcode 10.0+
Framework
- Swift Standard Library
Declaration
Parameters
end
The “past the end” index of the resulting subsequence.
end
must be a valid index of the collection.
Return Value
A subsequence up to, but not including, the end
position.
Discussion
The resulting subsequence does not include the element at the position end
. The following example searches for the index of the number 40
in an array of integers, and then prints the prefix of the array up to, but not including, that index:
Passing the collection’s starting index as the end
parameter results in an empty subsequence.
Using the prefix(up
method is equivalent to using a partial half-open range as the collection’s subscript. The subscript notation is preferred over prefix(up
.
Complexity: O(1)