We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04fdd4e commit 695aa79Copy full SHA for 695aa79
Sources/AsyncAlgorithms/AsyncShareSequence.swift
@@ -683,6 +683,10 @@ extension AsyncShareSequence: AsyncSequence {
683
init(_ iteration: Iteration) {
684
side = Side(iteration)
685
}
686
+
687
+ mutating func next() async rethrows -> Element? {
688
+ try await side.next(isolation: nil)
689
+ }
690
691
mutating func next(isolation actor: isolated (any Actor)?) async throws(Failure) -> Element? {
692
try await side.next(isolation: actor)
0 commit comments