Returns a sequence containing the initial, consecutive elements that satisfy the given predicate.
SDK
- Xcode 10.2+
Framework
- Swift Standard Library
Declaration
Parameters
predicate
A closure that takes an element of the sequence as its argument and returns a Boolean value indicating whether the element should be included in the result.
Return Value
A sequence of the initial, consecutive elements that satisfy predicate
.
Discussion
The following example uses the prefix(while:)
method to find the positive numbers at the beginning of the numbers
array. Every element of numbers
up to, but not including, the first negative value is included in the result.
If predicate
matches every element in the sequence, the resulting sequence contains every element of the sequence.
Complexity: O(k), where k is the length of the result.