next(isolation:)
Produces the next element in the prefix-while sequence.
Declaration
mutating func next(isolation actor: isolated (any Actor)?) async throws(AsyncPrefixWhileSequence<Base>.Failure) -> Base.Element?Discussion
If the predicate hasn’t yet failed, this method gets the next element from the base sequence and calls the predicate with it. If this call succeeds, this method passes along the element. Otherwise, it returns nil, ending the sequence.