Build Information
Successful build of Asynchrone, reference main (1ddfcd
), with Swift 6.0 for macOS (SPM) on 29 Nov 2024 04:37:58 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Build Log
========================================
RunAll
========================================
Builder version: 4.58.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/reddavis/Asynchrone.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/reddavis/Asynchrone
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 1ddfcd3 feat: remove Jazzy documentation (#52)
Cloned https://github.com/reddavis/Asynchrone.git
Revision (git rev-parse @):
1ddfcd3bc93277f68dffb793fc60001902f2517b
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/reddavis/Asynchrone.git at main
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
"identity": ".resolve-product-dependencies",
"name": "resolve-dependencies",
"url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"dependencies": [
{
"identity": "asynchrone",
"name": "Asynchrone",
"url": "https://github.com/reddavis/Asynchrone.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Asynchrone",
"dependencies": [
]
}
]
}
Fetching https://github.com/reddavis/Asynchrone.git
[1/4315] Fetching asynchrone
Fetched https://github.com/reddavis/Asynchrone.git from cache (2.08s)
Creating working copy for https://github.com/reddavis/Asynchrone.git
Working copy of https://github.com/reddavis/Asynchrone.git resolved at main (1ddfcd3)
warning: '.resolve-product-dependencies': dependency 'asynchrone' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.0
Building package at path: $PWD
https://github.com/reddavis/Asynchrone.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--7754E27361AE5C74.txt
[3/33] Emitting module Asynchrone
[4/36] Compiling Asynchrone CombineLatest3AsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/CurrentElementAsyncSequence.swift:94:27: warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
92 |
93 | fileprivate func yield(_ element: Element) {
94 | self.continuation.yield(element)
| |- warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'element' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
95 | }
96 |
[5/36] Compiling Asynchrone CombineLatestAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/CurrentElementAsyncSequence.swift:94:27: warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
92 |
93 | fileprivate func yield(_ element: Element) {
94 | self.continuation.yield(element)
| |- warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'element' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
95 | }
96 |
[6/36] Compiling Asynchrone CurrentElementAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/CurrentElementAsyncSequence.swift:94:27: warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
92 |
93 | fileprivate func yield(_ element: Element) {
94 | self.continuation.yield(element)
| |- warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'element' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
95 | }
96 |
[7/36] Compiling Asynchrone AnyThrowingAsyncSequenceable.swift
[8/36] Compiling Asynchrone AsyncSequenceCompletion.swift
[9/36] Compiling Asynchrone CatchErrorAsyncSequence.swift
[10/36] Compiling Asynchrone ChainAsyncSequenceable.swift
[11/36] Compiling Asynchrone Fail.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/Merge3AsyncSequence.swift:96:38: warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
94 | ) async throws -> Void = { sequence, continuation in
95 | for try await event in sequence {
96 | continuation.yield(event)
| |- warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
| |- note: 'event' used after being passed as a 'sending' parameter; Later uses could race
| `- note: access can happen concurrently
97 | }
98 | }
[12/36] Compiling Asynchrone Just.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/Merge3AsyncSequence.swift:96:38: warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
94 | ) async throws -> Void = { sequence, continuation in
95 | for try await event in sequence {
96 | continuation.yield(event)
| |- warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
| |- note: 'event' used after being passed as a 'sending' parameter; Later uses could race
| `- note: access can happen concurrently
97 | }
98 | }
[13/36] Compiling Asynchrone Merge3AsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/Merge3AsyncSequence.swift:96:38: warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
94 | ) async throws -> Void = { sequence, continuation in
95 | for try await event in sequence {
96 | continuation.yield(event)
| |- warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
| |- note: 'event' used after being passed as a 'sending' parameter; Later uses could race
| `- note: access can happen concurrently
97 | }
98 | }
[14/36] Compiling Asynchrone ErrorMechanism.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncSequence+Extension.swift:38:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
36 | on object: Root
37 | ) rethrows -> Task<Void, Error> where Self: Sendable, Root: Sendable {
38 | Task {
| `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
39 | for try await element in self {
40 | object[keyPath: keyPath] = element
| `- note: closure captures 'keyPath' which is accessible to code in the current task
41 | }
42 | }
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncStream+Extension.swift:26:29: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
24 | ) {
25 | self = AsyncStream(elementType, bufferingPolicy: limit) { continuation in
26 | let task = Task {
| `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
27 | await build(continuation)
| `- note: closure captures 'build' which is accessible to code in the current task
28 | }
29 |
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncStream+Extension.swift:45:14: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
43 | /// - Parameter value: The value to yield to the stream.
44 | public func finish(with value: Element) {
45 | self.yield(value)
| |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
46 | self.finish()
47 | }
[15/36] Compiling Asynchrone RethrowingAccessor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncSequence+Extension.swift:38:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
36 | on object: Root
37 | ) rethrows -> Task<Void, Error> where Self: Sendable, Root: Sendable {
38 | Task {
| `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
39 | for try await element in self {
40 | object[keyPath: keyPath] = element
| `- note: closure captures 'keyPath' which is accessible to code in the current task
41 | }
42 | }
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncStream+Extension.swift:26:29: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
24 | ) {
25 | self = AsyncStream(elementType, bufferingPolicy: limit) { continuation in
26 | let task = Task {
| `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
27 | await build(continuation)
| `- note: closure captures 'build' which is accessible to code in the current task
28 | }
29 |
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncStream+Extension.swift:45:14: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
43 | /// - Parameter value: The value to yield to the stream.
44 | public func finish(with value: Element) {
45 | self.yield(value)
| |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
46 | self.finish()
47 | }
[16/36] Compiling Asynchrone AsyncSequence+Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncSequence+Extension.swift:38:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
36 | on object: Root
37 | ) rethrows -> Task<Void, Error> where Self: Sendable, Root: Sendable {
38 | Task {
| `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
39 | for try await element in self {
40 | object[keyPath: keyPath] = element
| `- note: closure captures 'keyPath' which is accessible to code in the current task
41 | }
42 | }
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncStream+Extension.swift:26:29: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
24 | ) {
25 | self = AsyncStream(elementType, bufferingPolicy: limit) { continuation in
26 | let task = Task {
| `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
27 | await build(continuation)
| `- note: closure captures 'build' which is accessible to code in the current task
28 | }
29 |
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncStream+Extension.swift:45:14: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
43 | /// - Parameter value: The value to yield to the stream.
44 | public func finish(with value: Element) {
45 | self.yield(value)
| |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
46 | self.finish()
47 | }
[17/36] Compiling Asynchrone AsyncStream+Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncSequence+Extension.swift:38:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
36 | on object: Root
37 | ) rethrows -> Task<Void, Error> where Self: Sendable, Root: Sendable {
38 | Task {
| `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
39 | for try await element in self {
40 | object[keyPath: keyPath] = element
| `- note: closure captures 'keyPath' which is accessible to code in the current task
41 | }
42 | }
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncStream+Extension.swift:26:29: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
24 | ) {
25 | self = AsyncStream(elementType, bufferingPolicy: limit) { continuation in
26 | let task = Task {
| `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
27 | await build(continuation)
| `- note: closure captures 'build' which is accessible to code in the current task
28 | }
29 |
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncStream+Extension.swift:45:14: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
43 | /// - Parameter value: The value to yield to the stream.
44 | public func finish(with value: Element) {
45 | self.yield(value)
| |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
46 | self.finish()
47 | }
[18/36] Compiling Asynchrone MergeAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/NotificationCenterAsyncSequence.swift:75:17: warning: capture of 'passthroughAsyncSequence' with non-sendable type 'PassthroughAsyncSequence<Notification>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
73 | queue: nil
74 | ) { [passthroughAsyncSequence] notification in
75 | passthroughAsyncSequence.yield(notification)
| `- warning: capture of 'passthroughAsyncSequence' with non-sendable type 'PassthroughAsyncSequence<Notification>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
76 | }
77 | }
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/PassthroughAsyncSequence.swift:19:15: note: consider making generic struct 'PassthroughAsyncSequence' conform to the 'Sendable' protocol
17 | /// // 2
18 | /// ```
19 | public struct PassthroughAsyncSequence<Element>: AsyncSequence {
| `- note: consider making generic struct 'PassthroughAsyncSequence' conform to the 'Sendable' protocol
20 | private var stream: AsyncStream<Element>!
21 | private var continuation: AsyncStream<Element>.Continuation!
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/MergeAsyncSequence.swift:96:38: warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
94 | ) async throws -> Void = { sequence, continuation in
95 | for try await event in sequence {
96 | continuation.yield(event)
| |- warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
| |- note: 'event' used after being passed as a 'sending' parameter; Later uses could race
| `- note: access can happen concurrently
97 | }
98 | }
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/PassthroughAsyncSequence.swift:45:27: warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
43 | /// - Parameter element: The element to yield.
44 | public func yield(_ element: Element) {
45 | self.continuation.yield(element)
| |- warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'element' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
46 | }
47 |
[19/36] Compiling Asynchrone NotificationCenterAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/NotificationCenterAsyncSequence.swift:75:17: warning: capture of 'passthroughAsyncSequence' with non-sendable type 'PassthroughAsyncSequence<Notification>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
73 | queue: nil
74 | ) { [passthroughAsyncSequence] notification in
75 | passthroughAsyncSequence.yield(notification)
| `- warning: capture of 'passthroughAsyncSequence' with non-sendable type 'PassthroughAsyncSequence<Notification>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
76 | }
77 | }
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/PassthroughAsyncSequence.swift:19:15: note: consider making generic struct 'PassthroughAsyncSequence' conform to the 'Sendable' protocol
17 | /// // 2
18 | /// ```
19 | public struct PassthroughAsyncSequence<Element>: AsyncSequence {
| `- note: consider making generic struct 'PassthroughAsyncSequence' conform to the 'Sendable' protocol
20 | private var stream: AsyncStream<Element>!
21 | private var continuation: AsyncStream<Element>.Continuation!
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/MergeAsyncSequence.swift:96:38: warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
94 | ) async throws -> Void = { sequence, continuation in
95 | for try await event in sequence {
96 | continuation.yield(event)
| |- warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
| |- note: 'event' used after being passed as a 'sending' parameter; Later uses could race
| `- note: access can happen concurrently
97 | }
98 | }
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/PassthroughAsyncSequence.swift:45:27: warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
43 | /// - Parameter element: The element to yield.
44 | public func yield(_ element: Element) {
45 | self.continuation.yield(element)
| |- warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'element' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
46 | }
47 |
[20/36] Compiling Asynchrone PassthroughAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/NotificationCenterAsyncSequence.swift:75:17: warning: capture of 'passthroughAsyncSequence' with non-sendable type 'PassthroughAsyncSequence<Notification>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
73 | queue: nil
74 | ) { [passthroughAsyncSequence] notification in
75 | passthroughAsyncSequence.yield(notification)
| `- warning: capture of 'passthroughAsyncSequence' with non-sendable type 'PassthroughAsyncSequence<Notification>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
76 | }
77 | }
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/PassthroughAsyncSequence.swift:19:15: note: consider making generic struct 'PassthroughAsyncSequence' conform to the 'Sendable' protocol
17 | /// // 2
18 | /// ```
19 | public struct PassthroughAsyncSequence<Element>: AsyncSequence {
| `- note: consider making generic struct 'PassthroughAsyncSequence' conform to the 'Sendable' protocol
20 | private var stream: AsyncStream<Element>!
21 | private var continuation: AsyncStream<Element>.Continuation!
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/MergeAsyncSequence.swift:96:38: warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
94 | ) async throws -> Void = { sequence, continuation in
95 | for try await event in sequence {
96 | continuation.yield(event)
| |- warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
| |- note: 'event' used after being passed as a 'sending' parameter; Later uses could race
| `- note: access can happen concurrently
97 | }
98 | }
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/PassthroughAsyncSequence.swift:45:27: warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
43 | /// - Parameter element: The element to yield.
44 | public func yield(_ element: Element) {
45 | self.continuation.yield(element)
| |- warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'element' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
46 | }
47 |
[21/36] Compiling Asynchrone TimerAsyncSequence.swift
[22/36] Compiling Asynchrone Zip3AsyncSequence.swift
[23/36] Compiling Asynchrone ZipAsyncSequence.swift
[24/36] Compiling Asynchrone SharedAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/SharedAsyncSequence.swift:196:66: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
194 | do {
195 | for try await value in base {
196 | await self.continuations.values.forEach { $0.yield(value) }
| |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
197 | }
198 |
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/ThrowingPassthroughAsyncSequence.swift:51:27: warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
49 | /// - Parameter element: The element to yield.
50 | public func yield(_ element: Element) {
51 | self.continuation.yield(element)
| |- warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'element' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
52 | }
53 |
[25/36] Compiling Asynchrone ThrottleAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/SharedAsyncSequence.swift:196:66: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
194 | do {
195 | for try await value in base {
196 | await self.continuations.values.forEach { $0.yield(value) }
| |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
197 | }
198 |
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/ThrowingPassthroughAsyncSequence.swift:51:27: warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
49 | /// - Parameter element: The element to yield.
50 | public func yield(_ element: Element) {
51 | self.continuation.yield(element)
| |- warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'element' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
52 | }
53 |
[26/36] Compiling Asynchrone ThrowingPassthroughAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/SharedAsyncSequence.swift:196:66: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
194 | do {
195 | for try await value in base {
196 | await self.continuations.values.forEach { $0.yield(value) }
| |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
197 | }
198 |
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/ThrowingPassthroughAsyncSequence.swift:51:27: warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
49 | /// - Parameter element: The element to yield.
50 | public func yield(_ element: Element) {
51 | self.continuation.yield(element)
| |- warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'element' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
52 | }
53 |
[27/36] Compiling Asynchrone AsyncThrowingStream+Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncThrowingStream+Extension.swift:44:14: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
42 | /// - Parameter value: The value to yield to the stream.
43 | public func finish(with value: Element) {
44 | self.yield(value)
| |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
45 | self.finish()
46 | }
[28/36] Compiling Asynchrone Task+Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncThrowingStream+Extension.swift:44:14: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
42 | /// - Parameter value: The value to yield to the stream.
43 | public func finish(with value: Element) {
44 | self.yield(value)
| |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
45 | self.finish()
46 | }
[29/36] Compiling Asynchrone TimeInterval+Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncThrowingStream+Extension.swift:44:14: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
42 | /// - Parameter value: The value to yield to the stream.
43 | public func finish(with value: Element) {
44 | self.yield(value)
| |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
45 | self.finish()
46 | }
[30/36] Compiling Asynchrone AnyAsyncSequenceable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncThrowingStream+Extension.swift:44:14: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
42 | /// - Parameter value: The value to yield to the stream.
43 | public func finish(with value: Element) {
44 | self.yield(value)
| |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
45 | self.finish()
46 | }
[31/36] Compiling Asynchrone RemoveDuplicatesAsyncSequence.swift
[32/36] Compiling Asynchrone ReplaceErrorAsyncSequence.swift
[33/36] Compiling Asynchrone SequenceAsyncSequence.swift
[34/36] Compiling Asynchrone DebounceAsyncSequence.swift
[35/36] Compiling Asynchrone DelayAsyncSequence.swift
[36/36] Compiling Asynchrone Empty.swift
Build complete! (15.02s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Asynchrone",
"name" : "Asynchrone",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "14.0"
},
{
"name" : "macos",
"version" : "12.0"
},
{
"name" : "watchos",
"version" : "6.0"
},
{
"name" : "tvos",
"version" : "14.0"
}
],
"products" : [
{
"name" : "Asynchrone",
"targets" : [
"Asynchrone"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "AsynchroneTests",
"module_type" : "SwiftTarget",
"name" : "AsynchroneTests",
"path" : "Tests/AsynchroneTests",
"sources" : [
"Assertion.swift",
"Extensions/AsyncSequenceTests.swift",
"Extensions/TimeIntervalTests.swift",
"Sequences/AnyAsyncSequenceableTests.swift",
"Sequences/AnyThrowingAsyncSequenceableTests.swift",
"Sequences/CatchErrorAsyncSequenceTests.swift",
"Sequences/ChainAsyncSequenceTests.swift",
"Sequences/CombineLatest3AsyncSequenceTests.swift",
"Sequences/CombineLatestAsyncSequenceTests.swift",
"Sequences/CurrentElementAsyncSequenceTests.swift",
"Sequences/DebounceAsyncSequenceTests.swift",
"Sequences/DelayAsyncSequenceTests.swift",
"Sequences/EmptyTests.swift",
"Sequences/FailTests.swift",
"Sequences/JustTests.swift",
"Sequences/Merge3AsyncSequenceTests.swift",
"Sequences/MergeAsyncSequenceTests.swift",
"Sequences/NotificationCenterAsyncSequenceTests.swift",
"Sequences/PassthroughAsyncSequenceTests.swift",
"Sequences/RemoveDuplicatesAsyncSequenceTests.swift",
"Sequences/ReplaceErrorAsyncSequenceTests.swift",
"Sequences/SequenceAsyncSequenceTests.swift",
"Sequences/SharedAsyncSequenceTests.swift",
"Sequences/ThrottleAsyncSequenceTests.swift",
"Sequences/ThrowingPassthroughAsyncSequenceTests.swift",
"Sequences/TimerAsyncSequenceTests.swift",
"Sequences/ZipAsyncSequenceTests.swift",
"TestError.swift"
],
"target_dependencies" : [
"Asynchrone"
],
"type" : "test"
},
{
"c99name" : "Asynchrone",
"module_type" : "SwiftTarget",
"name" : "Asynchrone",
"path" : "Sources/Asynchrone",
"product_memberships" : [
"Asynchrone"
],
"sources" : [
"Common/ErrorMechanism.swift",
"Common/RethrowingAccessor.swift",
"Extensions/AsyncSequence+Extension.swift",
"Extensions/AsyncStream+Extension.swift",
"Extensions/AsyncThrowingStream+Extension.swift",
"Extensions/Task+Extension.swift",
"Extensions/TimeInterval+Extension.swift",
"Sequences/AnyAsyncSequenceable.swift",
"Sequences/AnyThrowingAsyncSequenceable.swift",
"Sequences/AsyncSequenceCompletion.swift",
"Sequences/CatchErrorAsyncSequence.swift",
"Sequences/ChainAsyncSequenceable.swift",
"Sequences/CombineLatest3AsyncSequence.swift",
"Sequences/CombineLatestAsyncSequence.swift",
"Sequences/CurrentElementAsyncSequence.swift",
"Sequences/DebounceAsyncSequence.swift",
"Sequences/DelayAsyncSequence.swift",
"Sequences/Empty.swift",
"Sequences/Fail.swift",
"Sequences/Just.swift",
"Sequences/Merge3AsyncSequence.swift",
"Sequences/MergeAsyncSequence.swift",
"Sequences/NotificationCenterAsyncSequence.swift",
"Sequences/PassthroughAsyncSequence.swift",
"Sequences/RemoveDuplicatesAsyncSequence.swift",
"Sequences/ReplaceErrorAsyncSequence.swift",
"Sequences/SequenceAsyncSequence.swift",
"Sequences/SharedAsyncSequence.swift",
"Sequences/ThrottleAsyncSequence.swift",
"Sequences/ThrowingPassthroughAsyncSequence.swift",
"Sequences/TimerAsyncSequence.swift",
"Sequences/Zip3AsyncSequence.swift",
"Sequences/ZipAsyncSequence.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/reddavis/asynchrone/main
Repository: reddavis/Asynchrone
Swift version used: 6.0
Target: Asynchrone
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
* branch 88815688627177b9716a01ca41da19397bd30e47 -> FETCH_HEAD
HEAD is now at 8881568 Update the artifact
Extracting symbol information for 'Asynchrone'...
Finished extracting symbol information for 'Asynchrone'. (3.22s)
Building documentation for 'Asynchrone'...
warning: Parameter 'maxBufferedElements' not found in initializer declaration
--> ../Extensions/AsyncStream+Extension.swift:7:9-8:78
5 | ///
6 | /// - Parameter elementType: The type the AsyncStream will produce.
7 + /// - Parameter maxBufferedElements: The maximum number of elements to
| ╰─suggestion: Remove 'maxBufferedElements' parameter documentation
8 + /// hold in the buffer past any checks for continuations being resumed.
9 | /// - Parameter build: The work associated with yielding values to the
10 | /// AsyncStream.
warning: Parameter 'limit' is missing documentation
--> ../Extensions/AsyncStream+Extension.swift:11:9-11:9
9 | /// - Parameter build: The work associated with yielding values to the
| ╰─suggestion: Document 'limit' parameter
10 | /// AsyncStream.
11 + ///
12 | /// The maximum number of pending elements limited by dropping the oldest
13 | /// value when a new value comes in if the buffer would excede the limit
warning: Parameter 'maxBufferedElements' not found in initializer declaration
--> ../Extensions/AsyncThrowingStream+Extension.swift:7:9-8:78
5 | ///
6 | /// - Parameter elementType: The type the AsyncThrowingStream will produce.
7 + /// - Parameter maxBufferedElements: The maximum number of elements to
| ╰─suggestion: Remove 'maxBufferedElements' parameter documentation
8 + /// hold in the buffer past any checks for continuations being resumed.
9 | /// - Parameter build: The work associated with yielding values to the
10 | /// AsyncThrowingStream.
warning: Parameter 'limit' is missing documentation
--> ../Extensions/AsyncThrowingStream+Extension.swift:11:9-11:9
9 | /// - Parameter build: The work associated with yielding values to the
| ╰─suggestion: Document 'limit' parameter
10 | /// AsyncThrowingStream.
11 + ///
12 | /// The maximum number of pending elements limited by dropping the oldest
13 | /// value when a new value comes in if the buffer would excede the limit
warning: Parameter 'sequence' not found in initializer declaration
--> ../Sequences/AnyAsyncSequenceable.swift:18:13-18:21
16 | /// Creates an optional type erasing async sequence.
17 | /// - Parameters:
18 + /// - sequence: An optional async sequence to type erase.
| ╰─suggestion: Replace 'sequence' with 'asyncSequence'
19 | public init?<T>(_ asyncSequence: T?) where T: AsyncSequence, T.Element == Element, T: Sendable {
20 | guard let asyncSequence = asyncSequence else { return nil }
warning: Parameter 'asyncSequence' is missing documentation
--> ../Sequences/AnyAsyncSequenceable.swift:18:64-18:64
16 | /// Creates an optional type erasing async sequence.
17 | /// - Parameters:
18 + /// - sequence: An optional async sequence to type erase.
| ╰─suggestion: Document 'asyncSequence' parameter
19 | public init?<T>(_ asyncSequence: T?) where T: AsyncSequence, T.Element == Element, T: Sendable {
20 | guard let asyncSequence = asyncSequence else { return nil }
warning: Parameter 'sequence' not found in initializer declaration
--> ../Sequences/AnyThrowingAsyncSequenceable.swift:18:13-18:21
16 | /// Creates an optional type erasing async sequence.
17 | /// - Parameters:
18 + /// - sequence: An optional async sequence to type erase.
| ╰─suggestion: Replace 'sequence' with 'asyncSequence'
19 | public init?<T>(_ asyncSequence: T?) where T: AsyncSequence, T: Sendable, T.Element == Element {
20 | guard let asyncSequence = asyncSequence else { return nil }
warning: Parameter 'asyncSequence' is missing documentation
--> ../Sequences/AnyThrowingAsyncSequenceable.swift:18:64-18:64
16 | /// Creates an optional type erasing async sequence.
17 | /// - Parameters:
18 + /// - sequence: An optional async sequence to type erase.
| ╰─suggestion: Document 'asyncSequence' parameter
19 | public init?<T>(_ asyncSequence: T?) where T: AsyncSequence, T: Sendable, T.Element == Element {
20 | guard let asyncSequence = asyncSequence else { return nil }
warning: Parameter 'output' not found in initializer declaration
--> ../Sequences/CatchErrorAsyncSequence.swift:38:11-38:91
36 | /// - Parameters:
37 | /// - base: The async sequence in which this sequence receives it's elements.
38 + /// - output: The element with which to replace errors from the base async sequence.
| ╰─suggestion: Remove 'output' parameter documentation
39 | public init(
40 | base: Base,
warning: Parameter 'handler' is missing documentation
--> ../Sequences/CatchErrorAsyncSequence.swift:38:91-38:91
36 | /// - Parameters:
37 | /// - base: The async sequence in which this sequence receives it's elements.
38 + /// - output: The element with which to replace errors from the base async sequence.
| ╰─suggestion: Document 'handler' parameter
39 | public init(
40 | base: Base,
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'lhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:145:11-145:62
143 | /// ```
144 | /// - Parameters:
145 + /// - lhs: The first async sequence to iterate through.
| ╰─suggestion: Remove 'lhs' parameter documentation
146 | /// - rhs: The second async sequence to iterate through.
147 | /// - Returns: A async sequence chains the two sequences.
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'rhs' not found in instance method declaration
--> ../Sequences/ChainAsyncSequenceable.swift:146:11-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Remove 'rhs' parameter documentation
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/ChainAsyncSequenceable.swift:146:63-146:63
144 | /// - Parameters:
145 | /// - lhs: The first async sequence to iterate through.
146 + /// - rhs: The second async sequence to iterate through.
| ╰─suggestion: Document 'sequence' parameter
147 | /// - Returns: A async sequence chains the two sequences.
148 | public func chain<P>(with sequence: P) -> ChainAsyncSequence<Self, P> where P: AsyncSequence {
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DebounceAsyncSequence.swift:225:11-225:84
223 | /// ```
224 | /// - Parameters:
225 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
226 | /// - dueTime: The amount of time the async sequence should wait before emitting an element.
227 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DebounceAsyncSequence.swift:225:11-225:84
223 | /// ```
224 | /// - Parameters:
225 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
226 | /// - dueTime: The amount of time the async sequence should wait before emitting an element.
227 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DebounceAsyncSequence.swift:225:11-225:84
223 | /// ```
224 | /// - Parameters:
225 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
226 | /// - dueTime: The amount of time the async sequence should wait before emitting an element.
227 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DebounceAsyncSequence.swift:225:11-225:84
223 | /// ```
224 | /// - Parameters:
225 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
226 | /// - dueTime: The amount of time the async sequence should wait before emitting an element.
227 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'base' not found in instance method declaration
--> ../Sequences/DelayAsyncSequence.swift:113:11-113:84
111 | /// ```
112 | /// - Parameters:
113 + /// - base: The async sequence in which this sequence receives it's elements.
| ╰─suggestion: Remove 'base' parameter documentation
114 | /// - interval: The amount of time the async sequence should wait before emitting an element.
115 | /// - Returns: A `DebounceAsyncSequence` instance.
warning: Parameter 'p' not found in initializer declaration
--> ../Sequences/SequenceAsyncSequence.swift:29:11-29:27
27 | /// Creates an async sequence that combines the two async sequence.
28 | /// - Parameters:
29 + /// - p: A sequence.
| ╰─suggestion: Remove 'p' parameter documentation
30 | public init(_ sequence: P) {
31 | self.sequence = sequence
warning: Parameter 'sequence' is missing documentation
--> ../Sequences/SequenceAsyncSequence.swift:29:27-29:27
27 | /// Creates an async sequence that combines the two async sequence.
28 | /// - Parameters:
29 + /// - p: A sequence.
| ╰─suggestion: Document 'sequence' parameter
30 | public init(_ sequence: P) {
31 | self.sequence = sequenceFinished building documentation for 'Asynchrone' (0.84s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/reddavis/asynchrone/main
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2038] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.34s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (0.58s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3186] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.25s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.58s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Building for debugging...
[0/8] Write sources
[3/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version--7754E27361AE5C74.txt
[6/53] Emitting module SymbolKit
[7/57] Compiling SymbolKit DeclarationFragments.swift
[8/57] Compiling SymbolKit Fragment.swift
[9/57] Compiling SymbolKit FragmentKind.swift
[10/57] Compiling SymbolKit FunctionParameter.swift
[11/57] Compiling SymbolKit FunctionSignature.swift
[12/57] Compiling SymbolKit SemanticVersion.swift
[13/57] Compiling SymbolKit AccessControl.swift
[14/57] Compiling SymbolKit Availability.swift
[15/57] Compiling SymbolKit AvailabilityItem.swift
[16/57] Compiling SymbolKit Domain.swift
[17/57] Emitting module Snippets
[18/57] Compiling Snippets SnippetParser.swift
[19/57] Compiling Snippets Snippet.swift
[20/57] Compiling SymbolKit Mixin+Equals.swift
[21/57] Compiling SymbolKit Mixin+Hash.swift
[22/57] Compiling SymbolKit Mixin.swift
[23/57] Compiling SymbolKit LineList.swift
[24/57] Compiling SymbolKit Position.swift
[25/57] Compiling SymbolKit GenericConstraint.swift
[26/57] Compiling SymbolKit GenericParameter.swift
[27/57] Compiling SymbolKit Generics.swift
[28/57] Compiling SymbolKit Namespace.swift
[29/57] Compiling SymbolKit Identifier.swift
[30/57] Compiling SymbolKit KindIdentifier.swift
[31/57] Compiling SymbolKit Location.swift
[32/57] Compiling SymbolKit Mutability.swift
[33/57] Compiling SymbolKit Names.swift
[34/57] Compiling SymbolKit SPI.swift
[35/57] Compiling SymbolKit Snippet.swift
[36/57] Compiling SymbolKit Extension.swift
[37/57] Compiling SymbolKit Symbol.swift
[38/57] Compiling SymbolKit SymbolKind.swift
[39/57] Compiling SymbolKit SymbolGraph.swift
[40/57] Compiling SymbolKit GraphCollector.swift
[41/57] Compiling SymbolKit Relationship.swift
[42/57] Compiling SymbolKit RelationshipKind.swift
[43/57] Compiling SymbolKit SourceOrigin.swift
[44/57] Compiling SymbolKit GenericConstraints.swift
[45/57] Compiling SymbolKit Swift.swift
[46/57] Compiling SymbolKit SourceRange.swift
[47/57] Compiling SymbolKit Metadata.swift
[48/57] Compiling SymbolKit Module.swift
[49/57] Compiling SymbolKit OperatingSystem.swift
[50/57] Compiling SymbolKit Platform.swift
[51/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[52/57] Compiling SymbolKit UnifiedSymbol.swift
[53/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[54/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.01s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/32] Compiling Asynchrone AnyThrowingAsyncSequenceable.swift
[3/32] Compiling Asynchrone AsyncSequenceCompletion.swift
[4/32] Compiling Asynchrone CatchErrorAsyncSequence.swift
[5/32] Compiling Asynchrone ChainAsyncSequenceable.swift
[6/35] Emitting module Asynchrone
[7/35] Compiling Asynchrone AsyncThrowingStream+Extension.swift
[8/35] Compiling Asynchrone Task+Extension.swift
[9/35] Compiling Asynchrone TimeInterval+Extension.swift
[10/35] Compiling Asynchrone AnyAsyncSequenceable.swift
[11/35] Compiling Asynchrone ErrorMechanism.swift
[12/35] Compiling Asynchrone RethrowingAccessor.swift
[13/35] Compiling Asynchrone AsyncSequence+Extension.swift
[14/35] Compiling Asynchrone AsyncStream+Extension.swift
[15/35] Compiling Asynchrone CombineLatest3AsyncSequence.swift
[16/35] Compiling Asynchrone CombineLatestAsyncSequence.swift
[17/35] Compiling Asynchrone CurrentElementAsyncSequence.swift
[18/35] Compiling Asynchrone MergeAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/NotificationCenterAsyncSequence.swift:75:17: warning: capture of 'passthroughAsyncSequence' with non-sendable type 'PassthroughAsyncSequence<Notification>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
73 | queue: nil
74 | ) { [passthroughAsyncSequence] notification in
75 | passthroughAsyncSequence.yield(notification)
| `- warning: capture of 'passthroughAsyncSequence' with non-sendable type 'PassthroughAsyncSequence<Notification>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
76 | }
77 | }
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/PassthroughAsyncSequence.swift:19:15: note: consider making generic struct 'PassthroughAsyncSequence' conform to the 'Sendable' protocol
17 | /// // 2
18 | /// ```
19 | public struct PassthroughAsyncSequence<Element>: AsyncSequence {
| `- note: consider making generic struct 'PassthroughAsyncSequence' conform to the 'Sendable' protocol
20 | private var stream: AsyncStream<Element>!
21 | private var continuation: AsyncStream<Element>.Continuation!
[19/35] Compiling Asynchrone NotificationCenterAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/NotificationCenterAsyncSequence.swift:75:17: warning: capture of 'passthroughAsyncSequence' with non-sendable type 'PassthroughAsyncSequence<Notification>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
73 | queue: nil
74 | ) { [passthroughAsyncSequence] notification in
75 | passthroughAsyncSequence.yield(notification)
| `- warning: capture of 'passthroughAsyncSequence' with non-sendable type 'PassthroughAsyncSequence<Notification>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
76 | }
77 | }
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/PassthroughAsyncSequence.swift:19:15: note: consider making generic struct 'PassthroughAsyncSequence' conform to the 'Sendable' protocol
17 | /// // 2
18 | /// ```
19 | public struct PassthroughAsyncSequence<Element>: AsyncSequence {
| `- note: consider making generic struct 'PassthroughAsyncSequence' conform to the 'Sendable' protocol
20 | private var stream: AsyncStream<Element>!
21 | private var continuation: AsyncStream<Element>.Continuation!
[20/35] Compiling Asynchrone PassthroughAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/NotificationCenterAsyncSequence.swift:75:17: warning: capture of 'passthroughAsyncSequence' with non-sendable type 'PassthroughAsyncSequence<Notification>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
73 | queue: nil
74 | ) { [passthroughAsyncSequence] notification in
75 | passthroughAsyncSequence.yield(notification)
| `- warning: capture of 'passthroughAsyncSequence' with non-sendable type 'PassthroughAsyncSequence<Notification>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
76 | }
77 | }
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/PassthroughAsyncSequence.swift:19:15: note: consider making generic struct 'PassthroughAsyncSequence' conform to the 'Sendable' protocol
17 | /// // 2
18 | /// ```
19 | public struct PassthroughAsyncSequence<Element>: AsyncSequence {
| `- note: consider making generic struct 'PassthroughAsyncSequence' conform to the 'Sendable' protocol
20 | private var stream: AsyncStream<Element>!
21 | private var continuation: AsyncStream<Element>.Continuation!
[21/35] Compiling Asynchrone Fail.swift
[22/35] Compiling Asynchrone Just.swift
[23/35] Compiling Asynchrone Merge3AsyncSequence.swift
[24/35] Compiling Asynchrone SharedAsyncSequence.swift
[25/35] Compiling Asynchrone ThrottleAsyncSequence.swift
[26/35] Compiling Asynchrone ThrowingPassthroughAsyncSequence.swift
[27/35] Compiling Asynchrone RemoveDuplicatesAsyncSequence.swift
[28/35] Compiling Asynchrone ReplaceErrorAsyncSequence.swift
[29/35] Compiling Asynchrone SequenceAsyncSequence.swift
[30/35] Compiling Asynchrone DebounceAsyncSequence.swift
[31/35] Compiling Asynchrone DelayAsyncSequence.swift
[32/35] Compiling Asynchrone Empty.swift
[33/35] Compiling Asynchrone TimerAsyncSequence.swift
[34/35] Compiling Asynchrone Zip3AsyncSequence.swift
[35/35] Compiling Asynchrone ZipAsyncSequence.swift
Build of target: 'Asynchrone' complete! (1.25s)
2894
21 /Users/admin/builder/spi-builder-workspace/.docs/reddavis/asynchrone/main
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/reddavis/asynchrone/main
File count: 2894
Doc size: 21.0MB
Preparing doc bundle ...
Uploading prod-reddavis-asynchrone-main-01d51049.zip to s3://spi-docs-inbox/prod-reddavis-asynchrone-main-01d51049.zip
Copying... [11%]
Copying... [21%]
Copying... [31%]
Copying... [41%]
Copying... [51%]
Copying... [61%]
Copying... [71%]
Copying... [81%]
Copying... [90%]
Copying... [100%]
Done.