Build Information
Failed to build Bow, reference master (a8c1a7
), with Swift 6.1 for Wasm on 27 May 2025 09:32:14 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
Build Log
116 | internal init(f: @escaping (A) -> B) {
117 | self.f = f
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:159:27: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
157 | }
158 |
159 | private class FlatMap<F: Monad, A, B>: CokleisliK<CoyonedaFPartial<F, A>, CoyonedaOf<F, B>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
160 | internal init(f: @escaping (A) -> CoyonedaOf<F, B>) {
161 | self.f = f
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:196:29: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
194 | }
195 |
196 | private class CoflatMap<F: Comonad, A, B>: CokleisliK<CoyonedaFPartial<F, A>, CoyonedaOf<F, B>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
197 | internal init(f: @escaping (CoyonedaOf<F, A>) -> B) {
198 | self.f = f
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:216:27: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
214 | }
215 |
216 | private class Extract<F: Comonad, A>: CokleisliK<CoyonedaFPartial<F, A>, A> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
217 | internal override init() {}
218 |
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:236:28: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
234 | }
235 |
236 | private class FoldLeft<F: Foldable, A, B>: CokleisliK<CoyonedaFPartial<F, A>, B> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
237 | internal init(b: B, f: @escaping (B, A) -> B) {
238 | self.b = b
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:260:29: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
258 | }
259 |
260 | private class FoldRight<F: Foldable, A, B>: CokleisliK<CoyonedaFPartial<F, A>, Eval<B>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
261 | internal init(b: Eval<B>, f: @escaping (A, Eval<B>) -> Eval<B>) {
262 | self.b = b
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:287:29: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
285 | }
286 |
287 | private class TraverseF<F: Traverse, G: Applicative, A, B>: CokleisliK<CoyonedaFPartial<F, A>, Kind<G, CoyonedaOf<F, B>>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
288 | internal init(f: @escaping (A) -> Kind<G, B>) {
289 | self.f = f
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:90:25: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
47 | ///
48 | /// Coyoneda can be viewed as the arguments that we need for the `map` function.
49 | public final class Coyoneda<F, A>: CoyonedaOf<F, A> {
| `- note: 'F' previously declared here
50 | internal let coyonedaF: Exists<CoyonedaFPartial<F, A>>
51 |
:
88 | }
89 |
90 | private class Lower<F: Functor, A>: CokleisliK<CoyonedaFPartial<F, A>, Kind<F, A>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
91 | public override func invoke<T>(_ fa: CoyonedaFOf<F, A, T>) -> Kind<F, A> {
92 | fa^.pivot.map(fa^.f.invoke)
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:90:37: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
47 | ///
48 | /// Coyoneda can be viewed as the arguments that we need for the `map` function.
49 | public final class Coyoneda<F, A>: CoyonedaOf<F, A> {
| `- note: 'A' previously declared here
50 | internal let coyonedaF: Exists<CoyonedaFPartial<F, A>>
51 |
:
88 | }
89 |
90 | private class Lower<F: Functor, A>: CokleisliK<CoyonedaFPartial<F, A>, Kind<F, A>> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
91 | public override func invoke<T>(_ fa: CoyonedaFOf<F, A, T>) -> Kind<F, A> {
92 | fa^.pivot.map(fa^.f.invoke)
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:115:23: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
113 | }
114 |
115 | private class Map<F, A, B>: CokleisliK<CoyonedaFPartial<F, A>, CoyonedaOf<F, B>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
116 | internal init(f: @escaping (A) -> B) {
117 | self.f = f
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:159:27: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
157 | }
158 |
159 | private class FlatMap<F: Monad, A, B>: CokleisliK<CoyonedaFPartial<F, A>, CoyonedaOf<F, B>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
160 | internal init(f: @escaping (A) -> CoyonedaOf<F, B>) {
161 | self.f = f
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:196:29: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
194 | }
195 |
196 | private class CoflatMap<F: Comonad, A, B>: CokleisliK<CoyonedaFPartial<F, A>, CoyonedaOf<F, B>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
197 | internal init(f: @escaping (CoyonedaOf<F, A>) -> B) {
198 | self.f = f
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:216:27: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
214 | }
215 |
216 | private class Extract<F: Comonad, A>: CokleisliK<CoyonedaFPartial<F, A>, A> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
217 | internal override init() {}
218 |
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:236:28: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
234 | }
235 |
236 | private class FoldLeft<F: Foldable, A, B>: CokleisliK<CoyonedaFPartial<F, A>, B> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
237 | internal init(b: B, f: @escaping (B, A) -> B) {
238 | self.b = b
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:260:29: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
258 | }
259 |
260 | private class FoldRight<F: Foldable, A, B>: CokleisliK<CoyonedaFPartial<F, A>, Eval<B>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
261 | internal init(b: Eval<B>, f: @escaping (A, Eval<B>) -> Eval<B>) {
262 | self.b = b
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:287:29: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
285 | }
286 |
287 | private class TraverseF<F: Traverse, G: Applicative, A, B>: CokleisliK<CoyonedaFPartial<F, A>, Kind<G, CoyonedaOf<F, B>>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
288 | internal init(f: @escaping (A) -> Kind<G, B>) {
289 | self.f = f
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:90:25: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
47 | ///
48 | /// Coyoneda can be viewed as the arguments that we need for the `map` function.
49 | public final class Coyoneda<F, A>: CoyonedaOf<F, A> {
| `- note: 'F' previously declared here
50 | internal let coyonedaF: Exists<CoyonedaFPartial<F, A>>
51 |
:
88 | }
89 |
90 | private class Lower<F: Functor, A>: CokleisliK<CoyonedaFPartial<F, A>, Kind<F, A>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
91 | public override func invoke<T>(_ fa: CoyonedaFOf<F, A, T>) -> Kind<F, A> {
92 | fa^.pivot.map(fa^.f.invoke)
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:90:37: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
47 | ///
48 | /// Coyoneda can be viewed as the arguments that we need for the `map` function.
49 | public final class Coyoneda<F, A>: CoyonedaOf<F, A> {
| `- note: 'A' previously declared here
50 | internal let coyonedaF: Exists<CoyonedaFPartial<F, A>>
51 |
:
88 | }
89 |
90 | private class Lower<F: Functor, A>: CokleisliK<CoyonedaFPartial<F, A>, Kind<F, A>> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
91 | public override func invoke<T>(_ fa: CoyonedaFOf<F, A, T>) -> Kind<F, A> {
92 | fa^.pivot.map(fa^.f.invoke)
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:115:23: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
113 | }
114 |
115 | private class Map<F, A, B>: CokleisliK<CoyonedaFPartial<F, A>, CoyonedaOf<F, B>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
116 | internal init(f: @escaping (A) -> B) {
117 | self.f = f
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:159:27: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
157 | }
158 |
159 | private class FlatMap<F: Monad, A, B>: CokleisliK<CoyonedaFPartial<F, A>, CoyonedaOf<F, B>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
160 | internal init(f: @escaping (A) -> CoyonedaOf<F, B>) {
161 | self.f = f
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:196:29: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
194 | }
195 |
196 | private class CoflatMap<F: Comonad, A, B>: CokleisliK<CoyonedaFPartial<F, A>, CoyonedaOf<F, B>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
197 | internal init(f: @escaping (CoyonedaOf<F, A>) -> B) {
198 | self.f = f
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:216:27: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
214 | }
215 |
216 | private class Extract<F: Comonad, A>: CokleisliK<CoyonedaFPartial<F, A>, A> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
217 | internal override init() {}
218 |
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:236:28: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
234 | }
235 |
236 | private class FoldLeft<F: Foldable, A, B>: CokleisliK<CoyonedaFPartial<F, A>, B> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
237 | internal init(b: B, f: @escaping (B, A) -> B) {
238 | self.b = b
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:260:29: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
258 | }
259 |
260 | private class FoldRight<F: Foldable, A, B>: CokleisliK<CoyonedaFPartial<F, A>, Eval<B>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
261 | internal init(b: Eval<B>, f: @escaping (A, Eval<B>) -> Eval<B>) {
262 | self.b = b
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:287:29: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
285 | }
286 |
287 | private class TraverseF<F: Traverse, G: Applicative, A, B>: CokleisliK<CoyonedaFPartial<F, A>, Kind<G, CoyonedaOf<F, B>>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
288 | internal init(f: @escaping (A) -> Kind<G, B>) {
289 | self.f = f
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:90:25: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
47 | ///
48 | /// Coyoneda can be viewed as the arguments that we need for the `map` function.
49 | public final class Coyoneda<F, A>: CoyonedaOf<F, A> {
| `- note: 'F' previously declared here
50 | internal let coyonedaF: Exists<CoyonedaFPartial<F, A>>
51 |
:
88 | }
89 |
90 | private class Lower<F: Functor, A>: CokleisliK<CoyonedaFPartial<F, A>, Kind<F, A>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
91 | public override func invoke<T>(_ fa: CoyonedaFOf<F, A, T>) -> Kind<F, A> {
92 | fa^.pivot.map(fa^.f.invoke)
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:90:37: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
47 | ///
48 | /// Coyoneda can be viewed as the arguments that we need for the `map` function.
49 | public final class Coyoneda<F, A>: CoyonedaOf<F, A> {
| `- note: 'A' previously declared here
50 | internal let coyonedaF: Exists<CoyonedaFPartial<F, A>>
51 |
:
88 | }
89 |
90 | private class Lower<F: Functor, A>: CokleisliK<CoyonedaFPartial<F, A>, Kind<F, A>> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
91 | public override func invoke<T>(_ fa: CoyonedaFOf<F, A, T>) -> Kind<F, A> {
92 | fa^.pivot.map(fa^.f.invoke)
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:115:23: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
113 | }
114 |
115 | private class Map<F, A, B>: CokleisliK<CoyonedaFPartial<F, A>, CoyonedaOf<F, B>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
116 | internal init(f: @escaping (A) -> B) {
117 | self.f = f
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:159:27: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
157 | }
158 |
159 | private class FlatMap<F: Monad, A, B>: CokleisliK<CoyonedaFPartial<F, A>, CoyonedaOf<F, B>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
160 | internal init(f: @escaping (A) -> CoyonedaOf<F, B>) {
161 | self.f = f
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:196:29: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
194 | }
195 |
196 | private class CoflatMap<F: Comonad, A, B>: CokleisliK<CoyonedaFPartial<F, A>, CoyonedaOf<F, B>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
197 | internal init(f: @escaping (CoyonedaOf<F, A>) -> B) {
198 | self.f = f
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:216:27: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
214 | }
215 |
216 | private class Extract<F: Comonad, A>: CokleisliK<CoyonedaFPartial<F, A>, A> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
217 | internal override init() {}
218 |
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:236:28: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
234 | }
235 |
236 | private class FoldLeft<F: Foldable, A, B>: CokleisliK<CoyonedaFPartial<F, A>, B> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
237 | internal init(b: B, f: @escaping (B, A) -> B) {
238 | self.b = b
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:260:29: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
258 | }
259 |
260 | private class FoldRight<F: Foldable, A, B>: CokleisliK<CoyonedaFPartial<F, A>, Eval<B>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
261 | internal init(b: Eval<B>, f: @escaping (A, Eval<B>) -> Eval<B>) {
262 | self.b = b
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:287:29: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
285 | }
286 |
287 | private class TraverseF<F: Traverse, G: Applicative, A, B>: CokleisliK<CoyonedaFPartial<F, A>, Kind<G, CoyonedaOf<F, B>>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
288 | internal init(f: @escaping (A) -> Kind<G, B>) {
289 | self.f = f
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:28: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'F' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:34: warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'B' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:111:24: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
33 | /// - A MonadWriter from a ComonadTraced
34 | /// - A MonadState from a ComonadStore
35 | public class CoT<W: Comonad, M, A>: CoTOf<W, M, A> {
| `- note: 'A' previously declared here
36 | internal let cow: (Kind<W, (A) -> Kind<M, Any>>) -> Kind<M, Any>
37 |
:
109 | /// - wa: Comonadic space to explore.
110 | /// - Returns: A new Comonadic space resulting from the exploration.
111 | static func select<A, B>(
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
112 | _ co: Co<W, (A) -> B>,
113 | _ wa: Kind<W, A>) -> Kind<W, B> {
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:269:16: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
266 | }
267 |
268 | public static func listen<A>(_ fa: CoTOf<W, M, A>) -> CoTOf<W, M, (W.M, A)> {
| `- note: 'A' previously declared here
269 | func f<A>(_ x: W.M, _ g: @escaping ((W.M, A)) -> Kind<M, Any>) -> (A) -> Kind<M, Any> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
270 | { a in
271 | g((x, a))
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:28: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'F' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:34: warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'B' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:111:24: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
33 | /// - A MonadWriter from a ComonadTraced
34 | /// - A MonadState from a ComonadStore
35 | public class CoT<W: Comonad, M, A>: CoTOf<W, M, A> {
| `- note: 'A' previously declared here
36 | internal let cow: (Kind<W, (A) -> Kind<M, Any>>) -> Kind<M, Any>
37 |
:
109 | /// - wa: Comonadic space to explore.
110 | /// - Returns: A new Comonadic space resulting from the exploration.
111 | static func select<A, B>(
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
112 | _ co: Co<W, (A) -> B>,
113 | _ wa: Kind<W, A>) -> Kind<W, B> {
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:269:16: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
266 | }
267 |
268 | public static func listen<A>(_ fa: CoTOf<W, M, A>) -> CoTOf<W, M, (W.M, A)> {
| `- note: 'A' previously declared here
269 | func f<A>(_ x: W.M, _ g: @escaping ((W.M, A)) -> Kind<M, Any>) -> (A) -> Kind<M, Any> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
270 | { a in
271 | g((x, a))
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:28: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'F' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:34: warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'B' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:111:24: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
33 | /// - A MonadWriter from a ComonadTraced
34 | /// - A MonadState from a ComonadStore
35 | public class CoT<W: Comonad, M, A>: CoTOf<W, M, A> {
| `- note: 'A' previously declared here
36 | internal let cow: (Kind<W, (A) -> Kind<M, Any>>) -> Kind<M, Any>
37 |
:
109 | /// - wa: Comonadic space to explore.
110 | /// - Returns: A new Comonadic space resulting from the exploration.
111 | static func select<A, B>(
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
112 | _ co: Co<W, (A) -> B>,
113 | _ wa: Kind<W, A>) -> Kind<W, B> {
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:269:16: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
266 | }
267 |
268 | public static func listen<A>(_ fa: CoTOf<W, M, A>) -> CoTOf<W, M, (W.M, A)> {
| `- note: 'A' previously declared here
269 | func f<A>(_ x: W.M, _ g: @escaping ((W.M, A)) -> Kind<M, Any>) -> (A) -> Kind<M, Any> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
270 | { a in
271 | g((x, a))
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:28: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'F' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:34: warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'B' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:111:24: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
33 | /// - A MonadWriter from a ComonadTraced
34 | /// - A MonadState from a ComonadStore
35 | public class CoT<W: Comonad, M, A>: CoTOf<W, M, A> {
| `- note: 'A' previously declared here
36 | internal let cow: (Kind<W, (A) -> Kind<M, Any>>) -> Kind<M, Any>
37 |
:
109 | /// - wa: Comonadic space to explore.
110 | /// - Returns: A new Comonadic space resulting from the exploration.
111 | static func select<A, B>(
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
112 | _ co: Co<W, (A) -> B>,
113 | _ wa: Kind<W, A>) -> Kind<W, B> {
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:269:16: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
266 | }
267 |
268 | public static func listen<A>(_ fa: CoTOf<W, M, A>) -> CoTOf<W, M, (W.M, A)> {
| `- note: 'A' previously declared here
269 | func f<A>(_ x: W.M, _ g: @escaping ((W.M, A)) -> Kind<M, Any>) -> (A) -> Kind<M, Any> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
270 | { a in
271 | g((x, a))
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:28: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'F' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:34: warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'B' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:111:24: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
33 | /// - A MonadWriter from a ComonadTraced
34 | /// - A MonadState from a ComonadStore
35 | public class CoT<W: Comonad, M, A>: CoTOf<W, M, A> {
| `- note: 'A' previously declared here
36 | internal let cow: (Kind<W, (A) -> Kind<M, Any>>) -> Kind<M, Any>
37 |
:
109 | /// - wa: Comonadic space to explore.
110 | /// - Returns: A new Comonadic space resulting from the exploration.
111 | static func select<A, B>(
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
112 | _ co: Co<W, (A) -> B>,
113 | _ wa: Kind<W, A>) -> Kind<W, B> {
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:269:16: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
266 | }
267 |
268 | public static func listen<A>(_ fa: CoTOf<W, M, A>) -> CoTOf<W, M, (W.M, A)> {
| `- note: 'A' previously declared here
269 | func f<A>(_ x: W.M, _ g: @escaping ((W.M, A)) -> Kind<M, Any>) -> (A) -> Kind<M, Any> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
270 | { a in
271 | g((x, a))
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:28: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'F' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:34: warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'B' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:111:24: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
33 | /// - A MonadWriter from a ComonadTraced
34 | /// - A MonadState from a ComonadStore
35 | public class CoT<W: Comonad, M, A>: CoTOf<W, M, A> {
| `- note: 'A' previously declared here
36 | internal let cow: (Kind<W, (A) -> Kind<M, Any>>) -> Kind<M, Any>
37 |
:
109 | /// - wa: Comonadic space to explore.
110 | /// - Returns: A new Comonadic space resulting from the exploration.
111 | static func select<A, B>(
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
112 | _ co: Co<W, (A) -> B>,
113 | _ wa: Kind<W, A>) -> Kind<W, B> {
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:269:16: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
266 | }
267 |
268 | public static func listen<A>(_ fa: CoTOf<W, M, A>) -> CoTOf<W, M, (W.M, A)> {
| `- note: 'A' previously declared here
269 | func f<A>(_ x: W.M, _ g: @escaping ((W.M, A)) -> Kind<M, Any>) -> (A) -> Kind<M, Any> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
270 | { a in
271 | g((x, a))
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:28: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'F' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:34: warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'B' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:111:24: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
33 | /// - A MonadWriter from a ComonadTraced
34 | /// - A MonadState from a ComonadStore
35 | public class CoT<W: Comonad, M, A>: CoTOf<W, M, A> {
| `- note: 'A' previously declared here
36 | internal let cow: (Kind<W, (A) -> Kind<M, Any>>) -> Kind<M, Any>
37 |
:
109 | /// - wa: Comonadic space to explore.
110 | /// - Returns: A new Comonadic space resulting from the exploration.
111 | static func select<A, B>(
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
112 | _ co: Co<W, (A) -> B>,
113 | _ wa: Kind<W, A>) -> Kind<W, B> {
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:269:16: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
266 | }
267 |
268 | public static func listen<A>(_ fa: CoTOf<W, M, A>) -> CoTOf<W, M, (W.M, A)> {
| `- note: 'A' previously declared here
269 | func f<A>(_ x: W.M, _ g: @escaping ((W.M, A)) -> Kind<M, Any>) -> (A) -> Kind<M, Any> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
270 | { a in
271 | g((x, a))
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:28: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'F' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:34: warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'B' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:111:24: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
33 | /// - A MonadWriter from a ComonadTraced
34 | /// - A MonadState from a ComonadStore
35 | public class CoT<W: Comonad, M, A>: CoTOf<W, M, A> {
| `- note: 'A' previously declared here
36 | internal let cow: (Kind<W, (A) -> Kind<M, Any>>) -> Kind<M, Any>
37 |
:
109 | /// - wa: Comonadic space to explore.
110 | /// - Returns: A new Comonadic space resulting from the exploration.
111 | static func select<A, B>(
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
112 | _ co: Co<W, (A) -> B>,
113 | _ wa: Kind<W, A>) -> Kind<W, B> {
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:269:16: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
266 | }
267 |
268 | public static func listen<A>(_ fa: CoTOf<W, M, A>) -> CoTOf<W, M, (W.M, A)> {
| `- note: 'A' previously declared here
269 | func f<A>(_ x: W.M, _ g: @escaping ((W.M, A)) -> Kind<M, Any>) -> (A) -> Kind<M, Any> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
270 | { a in
271 | g((x, a))
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:28: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'F' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:34: warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'B' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:111:24: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
33 | /// - A MonadWriter from a ComonadTraced
34 | /// - A MonadState from a ComonadStore
35 | public class CoT<W: Comonad, M, A>: CoTOf<W, M, A> {
| `- note: 'A' previously declared here
36 | internal let cow: (Kind<W, (A) -> Kind<M, Any>>) -> Kind<M, Any>
37 |
:
109 | /// - wa: Comonadic space to explore.
110 | /// - Returns: A new Comonadic space resulting from the exploration.
111 | static func select<A, B>(
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
112 | _ co: Co<W, (A) -> B>,
113 | _ wa: Kind<W, A>) -> Kind<W, B> {
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:269:16: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
266 | }
267 |
268 | public static func listen<A>(_ fa: CoTOf<W, M, A>) -> CoTOf<W, M, (W.M, A)> {
| `- note: 'A' previously declared here
269 | func f<A>(_ x: W.M, _ g: @escaping ((W.M, A)) -> Kind<M, Any>) -> (A) -> Kind<M, Any> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
270 | { a in
271 | g((x, a))
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:28: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'F' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:34: warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'B' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:111:24: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
33 | /// - A MonadWriter from a ComonadTraced
34 | /// - A MonadState from a ComonadStore
35 | public class CoT<W: Comonad, M, A>: CoTOf<W, M, A> {
| `- note: 'A' previously declared here
36 | internal let cow: (Kind<W, (A) -> Kind<M, Any>>) -> Kind<M, Any>
37 |
:
109 | /// - wa: Comonadic space to explore.
110 | /// - Returns: A new Comonadic space resulting from the exploration.
111 | static func select<A, B>(
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
112 | _ co: Co<W, (A) -> B>,
113 | _ wa: Kind<W, A>) -> Kind<W, B> {
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:269:16: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
266 | }
267 |
268 | public static func listen<A>(_ fa: CoTOf<W, M, A>) -> CoTOf<W, M, (W.M, A)> {
| `- note: 'A' previously declared here
269 | func f<A>(_ x: W.M, _ g: @escaping ((W.M, A)) -> Kind<M, Any>) -> (A) -> Kind<M, Any> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
270 | { a in
271 | g((x, a))
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:28: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'F' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:34: warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'B' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:111:24: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
33 | /// - A MonadWriter from a ComonadTraced
34 | /// - A MonadState from a ComonadStore
35 | public class CoT<W: Comonad, M, A>: CoTOf<W, M, A> {
| `- note: 'A' previously declared here
36 | internal let cow: (Kind<W, (A) -> Kind<M, Any>>) -> Kind<M, Any>
37 |
:
109 | /// - wa: Comonadic space to explore.
110 | /// - Returns: A new Comonadic space resulting from the exploration.
111 | static func select<A, B>(
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
112 | _ co: Co<W, (A) -> B>,
113 | _ wa: Kind<W, A>) -> Kind<W, B> {
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:269:16: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
266 | }
267 |
268 | public static func listen<A>(_ fa: CoTOf<W, M, A>) -> CoTOf<W, M, (W.M, A)> {
| `- note: 'A' previously declared here
269 | func f<A>(_ x: W.M, _ g: @escaping ((W.M, A)) -> Kind<M, Any>) -> (A) -> Kind<M, Any> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
270 | { a in
271 | g((x, a))
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:28: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'F' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:34: warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'B' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:111:24: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
33 | /// - A MonadWriter from a ComonadTraced
34 | /// - A MonadState from a ComonadStore
35 | public class CoT<W: Comonad, M, A>: CoTOf<W, M, A> {
| `- note: 'A' previously declared here
36 | internal let cow: (Kind<W, (A) -> Kind<M, Any>>) -> Kind<M, Any>
37 |
:
109 | /// - wa: Comonadic space to explore.
110 | /// - Returns: A new Comonadic space resulting from the exploration.
111 | static func select<A, B>(
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
112 | _ co: Co<W, (A) -> B>,
113 | _ wa: Kind<W, A>) -> Kind<W, B> {
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:269:16: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
266 | }
267 |
268 | public static func listen<A>(_ fa: CoTOf<W, M, A>) -> CoTOf<W, M, (W.M, A)> {
| `- note: 'A' previously declared here
269 | func f<A>(_ x: W.M, _ g: @escaping ((W.M, A)) -> Kind<M, Any>) -> (A) -> Kind<M, Any> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
270 | { a in
271 | g((x, a))
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:28: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'F' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:34: warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'B' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:111:24: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
33 | /// - A MonadWriter from a ComonadTraced
34 | /// - A MonadState from a ComonadStore
35 | public class CoT<W: Comonad, M, A>: CoTOf<W, M, A> {
| `- note: 'A' previously declared here
36 | internal let cow: (Kind<W, (A) -> Kind<M, Any>>) -> Kind<M, Any>
37 |
:
109 | /// - wa: Comonadic space to explore.
110 | /// - Returns: A new Comonadic space resulting from the exploration.
111 | static func select<A, B>(
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
112 | _ co: Co<W, (A) -> B>,
113 | _ wa: Kind<W, A>) -> Kind<W, B> {
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:269:16: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
266 | }
267 |
268 | public static func listen<A>(_ fa: CoTOf<W, M, A>) -> CoTOf<W, M, (W.M, A)> {
| `- note: 'A' previously declared here
269 | func f<A>(_ x: W.M, _ g: @escaping ((W.M, A)) -> Kind<M, Any>) -> (A) -> Kind<M, Any> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
270 | { a in
271 | g((x, a))
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:28: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'F' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:34: warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'B' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:111:24: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
33 | /// - A MonadWriter from a ComonadTraced
34 | /// - A MonadState from a ComonadStore
35 | public class CoT<W: Comonad, M, A>: CoTOf<W, M, A> {
| `- note: 'A' previously declared here
36 | internal let cow: (Kind<W, (A) -> Kind<M, Any>>) -> Kind<M, Any>
37 |
:
109 | /// - wa: Comonadic space to explore.
110 | /// - Returns: A new Comonadic space resulting from the exploration.
111 | static func select<A, B>(
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
112 | _ co: Co<W, (A) -> B>,
113 | _ wa: Kind<W, A>) -> Kind<W, B> {
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:269:16: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
266 | }
267 |
268 | public static func listen<A>(_ fa: CoTOf<W, M, A>) -> CoTOf<W, M, (W.M, A)> {
| `- note: 'A' previously declared here
269 | func f<A>(_ x: W.M, _ g: @escaping ((W.M, A)) -> Kind<M, Any>) -> (A) -> Kind<M, Any> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
270 | { a in
271 | g((x, a))
[273/295] Compiling RxSwift SynchronizedUnsubscribeType.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[274/295] Compiling RxSwift TailRecursiveSink.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[275/295] Compiling RxSwift Take.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[276/295] Compiling RxSwift TakeLast.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[277/295] Compiling RxSwift TakeUntil.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[278/295] Compiling RxSwift TakeWhile.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[279/295] Compiling RxSwift Throttle.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[280/295] Compiling RxSwift Timeout.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[281/295] Compiling RxSwift Timer.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[282/295] Compiling RxSwift ToArray.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[283/295] Compiling RxSwift Using.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[284/295] Compiling RxSwift VirtualTimeConverterType.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[285/295] Compiling RxSwift VirtualTimeScheduler.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[286/295] Compiling RxSwift Window.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[287/295] Compiling RxSwift WithLatestFrom.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[288/295] Compiling RxSwift Zip+Collection.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[289/295] Compiling RxSwift Zip+arity.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[290/295] Compiling RxSwift Zip.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
error: emit-module command failed with exit code 1 (use -v to see invocation)
[291/296] Emitting module SwiftCheck
/host/spi-builder-workspace/.build/checkouts/SwiftCheck/Sources/SwiftCheck/Arbitrary.swift:376:9: error: no such module 'Darwin'
374 | import Glibc
375 | #else
376 | import Darwin
| `- error: no such module 'Darwin'
377 | #endif
378 |
/host/spi-builder-workspace/.build/checkouts/SwiftCheck/Sources/SwiftCheck/Arbitrary.swift:376:9: error: no such module 'Darwin'
374 | import Glibc
375 | #else
376 | import Darwin
| `- error: no such module 'Darwin'
377 | #endif
378 |
/host/spi-builder-workspace/.build/checkouts/SwiftCheck/Sources/SwiftCheck/Arbitrary.swift:376:9: error: no such module 'Darwin'
374 | import Glibc
375 | #else
376 | import Darwin
| `- error: no such module 'Darwin'
377 | #endif
378 |
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:059e0fdbe549369b902c0d423739510ddee50a4a70258d1404125eb9394ef31c
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[2/245] Emitting module SwiftCheck
/host/spi-builder-workspace/.build/checkouts/SwiftCheck/Sources/SwiftCheck/Arbitrary.swift:376:9: error: no such module 'Darwin'
374 | import Glibc
375 | #else
376 | import Darwin
| `- error: no such module 'Darwin'
377 | #endif
378 |
[3/245] Compiling Bow Cokleisli.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCheck/Sources/SwiftCheck/Arbitrary.swift:376:9: error: no such module 'Darwin'
374 | import Glibc
375 | #else
376 | import Darwin
| `- error: no such module 'Darwin'
377 | #endif
378 |
[4/245] Compiling Bow CokleisliK.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCheck/Sources/SwiftCheck/Arbitrary.swift:376:9: error: no such module 'Darwin'
374 | import Glibc
375 | #else
376 | import Darwin
| `- error: no such module 'Darwin'
377 | #endif
378 |
[5/246] Compiling Bow ArrayK.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCheck/Sources/SwiftCheck/Arbitrary.swift:376:9: error: no such module 'Darwin'
374 | import Glibc
375 | #else
376 | import Darwin
| `- error: no such module 'Darwin'
377 | #endif
378 |
[6/246] Compiling Bow Co.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCheck/Sources/SwiftCheck/Arbitrary.swift:376:9: error: no such module 'Darwin'
374 | import Glibc
375 | #else
376 | import Darwin
| `- error: no such module 'Darwin'
377 | #endif
378 |
[7/246] Compiling Bow CoSum.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCheck/Sources/SwiftCheck/Arbitrary.swift:376:9: error: no such module 'Darwin'
374 | import Glibc
375 | #else
376 | import Darwin
| `- error: no such module 'Darwin'
377 | #endif
378 |
[8/246] Compiling Bow Const.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCheck/Sources/SwiftCheck/Arbitrary.swift:376:9: error: no such module 'Darwin'
374 | import Glibc
375 | #else
376 | import Darwin
| `- error: no such module 'Darwin'
377 | #endif
378 |
[9/246] Compiling RxSwift SerialDisposable.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[10/246] Compiling RxSwift ShareReplayScope.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[11/246] Compiling RxSwift Single.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[12/246] Compiling RxSwift SingleAssignmentDisposable.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[13/246] Compiling RxSwift SingleAsync.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[14/246] Compiling RxSwift Sink.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[15/246] Compiling RxSwift Skip.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[16/246] Compiling RxSwift SkipUntil.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[17/246] Compiling RxSwift SkipWhile.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[18/246] Compiling RxSwift StartWith.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[19/246] Compiling RxSwift SubjectType.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[20/246] Compiling RxSwift SubscribeOn.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[21/246] Compiling RxSwift SubscriptionDisposable.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[22/246] Compiling RxSwift SwiftSupport.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[23/246] Compiling RxSwift Switch.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[24/246] Compiling RxSwift SwitchIfEmpty.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[25/246] Compiling RxSwift SynchronizedDisposeType.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[26/246] Compiling RxSwift SynchronizedOnType.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[27/264] Compiling Bow Kleisli.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCheck/Sources/SwiftCheck/Arbitrary.swift:376:9: error: no such module 'Darwin'
374 | import Glibc
375 | #else
376 | import Darwin
| `- error: no such module 'Darwin'
377 | #endif
378 |
[28/264] Compiling Bow LazyFunction1.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCheck/Sources/SwiftCheck/Arbitrary.swift:376:9: error: no such module 'Darwin'
374 | import Glibc
375 | #else
376 | import Darwin
| `- error: no such module 'Darwin'
377 | #endif
378 |
[29/264] Compiling Bow Action.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCheck/Sources/SwiftCheck/Arbitrary.swift:376:9: error: no such module 'Darwin'
374 | import Glibc
375 | #else
376 | import Darwin
| `- error: no such module 'Darwin'
377 | #endif
378 |
[30/264] Compiling Bow Array.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCheck/Sources/SwiftCheck/Arbitrary.swift:376:9: error: no such module 'Darwin'
374 | import Glibc
375 | #else
376 | import Darwin
| `- error: no such module 'Darwin'
377 | #endif
378 |
[31/264] Compiling Bow WriterBindingExpression.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[32/264] Compiling Bow MonadError.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[33/264] Compiling Bow MonadFilter.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[34/264] Compiling Bow MonadReader.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[35/264] Compiling Bow MonadState.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[36/264] Compiling Bow MonadTrans.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[37/264] Compiling Bow ComonadTrans.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[38/264] Compiling Bow Comparable.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[39/264] Compiling Bow Contravariant.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[40/264] Compiling Bow Decidable.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[41/264] Compiling Bow Divide.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[42/264] Compiling Bow Divisible.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[43/264] Compiling Bow EquatableK.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[44/264] Compiling Bow Foldable.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[45/264] Compiling Bow Functor.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[46/264] Compiling Bow FunctorFilter.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[47/264] Compiling Bow HashableK.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[48/264] Compiling Bow Invariant.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[49/264] Compiling Bow Monad.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[50/264] Compiling RxSwift GroupBy.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[51/264] Compiling RxSwift GroupedObservable.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[52/264] Compiling RxSwift HistoricalScheduler.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[53/264] Compiling RxSwift HistoricalSchedulerTimeConverter.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[54/264] Compiling RxSwift ImmediateSchedulerType.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[55/264] Compiling RxSwift InfiniteSequence.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[56/264] Compiling RxSwift InvocableScheduledItem.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[57/264] Compiling RxSwift InvocableType.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[58/264] Compiling RxSwift Just.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[59/264] Compiling RxSwift Lock.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[60/264] Compiling RxSwift LockOwnerType.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[61/264] Compiling RxSwift MainScheduler.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[62/264] Compiling RxSwift Map.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[63/264] Compiling RxSwift Materialize.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[64/264] Compiling RxSwift Maybe.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[65/264] Compiling RxSwift Merge.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[66/264] Compiling RxSwift Multicast.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[67/264] Compiling RxSwift Never.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[68/264] Compiling RxSwift NopDisposable.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[69/264] Compiling SwiftCheck WitnessedArbitrary.swift
/host/spi-builder-workspace/.build/checkouts/SwiftCheck/Sources/SwiftCheck/Arbitrary.swift:376:9: error: no such module 'Darwin'
374 | import Glibc
375 | #else
376 | import Darwin
| `- error: no such module 'Darwin'
377 | #endif
378 |
[70/264] Compiling Bow StateT.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[71/264] Compiling Bow StoreT.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[72/264] Compiling Bow TracedT.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[73/264] Compiling Bow WriterT.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[74/264] Compiling Bow Alternative.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[75/264] Compiling Bow Applicative.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[76/264] Compiling Bow ApplicativeError.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[77/264] Compiling Bow Bimonad.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[78/264] Compiling Bow Comonad.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[79/264] Compiling Bow ComonadEnv.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[80/264] Compiling Bow ComonadStore.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[81/264] Compiling Bow ComonadTraced.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[82/264] Compiling Bow MonadCombine.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[83/264] Compiling Bow BindingExpression.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[84/264] Compiling Bow BindingOperator.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[85/264] Compiling Bow BoundVar.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[86/264] Compiling Bow MonadComprenhensions.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[87/264] Compiling Bow ReaderBindingExpression.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[88/264] Compiling Bow StateBindingExpression.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[89/264] Emitting module Bow
/host/spi-builder-workspace/Sources/Bow/Typeclasses/MonadComprehensions/MonadComprenhensions.swift:43:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
41 | }
42 |
43 | @_functionBuilder
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
44 | public struct BindingsBuilder {
45 | public static func buildBlock<F>(_ instructions: BindingExpression<F>...) -> [BindingExpression<F>] {
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:28: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'F' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Arrow/CokleisliK.swift:58:34: warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | /// that is polymorphic on A, where F and B are fixed.
5 | /// Subclasses of `CokleisliK` need to implement `invoke`.
6 | open class CokleisliK<F, B> {
| `- note: 'B' previously declared here
7 | /// Initializer
8 | public init() {}
:
56 | }
57 |
58 | private class Composed<F, T, B>: CokleisliK<F, B> {
| `- warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | private let f: CokleisliK<F, T>
60 | private let g: Function1<T, B>
/host/spi-builder-workspace/Sources/Bow/Data/Co.swift:111:24: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
33 | /// - A MonadWriter from a ComonadTraced
34 | /// - A MonadState from a ComonadStore
35 | public class CoT<W: Comonad, M, A>: CoTOf<W, M, A> {
| `- note: 'A' previously declared here
36 | internal let cow: (Kind<W, (A) -> Kind<M, Any>>) -> Kind<M, Any>
37 |
:
109 | /// - wa: Comonadic space to explore.
110 | /// - Returns: A new Comonadic space resulting from the exploration.
111 | static func select<A, B>(
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
112 | _ co: Co<W, (A) -> B>,
113 | _ wa: Kind<W, A>) -> Kind<W, B> {
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:90:25: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
47 | ///
48 | /// Coyoneda can be viewed as the arguments that we need for the `map` function.
49 | public final class Coyoneda<F, A>: CoyonedaOf<F, A> {
| `- note: 'F' previously declared here
50 | internal let coyonedaF: Exists<CoyonedaFPartial<F, A>>
51 |
:
88 | }
89 |
90 | private class Lower<F: Functor, A>: CokleisliK<CoyonedaFPartial<F, A>, Kind<F, A>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
91 | public override func invoke<T>(_ fa: CoyonedaFOf<F, A, T>) -> Kind<F, A> {
92 | fa^.pivot.map(fa^.f.invoke)
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:90:37: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
47 | ///
48 | /// Coyoneda can be viewed as the arguments that we need for the `map` function.
49 | public final class Coyoneda<F, A>: CoyonedaOf<F, A> {
| `- note: 'A' previously declared here
50 | internal let coyonedaF: Exists<CoyonedaFPartial<F, A>>
51 |
:
88 | }
89 |
90 | private class Lower<F: Functor, A>: CokleisliK<CoyonedaFPartial<F, A>, Kind<F, A>> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
91 | public override func invoke<T>(_ fa: CoyonedaFOf<F, A, T>) -> Kind<F, A> {
92 | fa^.pivot.map(fa^.f.invoke)
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:115:23: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
113 | }
114 |
115 | private class Map<F, A, B>: CokleisliK<CoyonedaFPartial<F, A>, CoyonedaOf<F, B>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
116 | internal init(f: @escaping (A) -> B) {
117 | self.f = f
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:159:27: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
157 | }
158 |
159 | private class FlatMap<F: Monad, A, B>: CokleisliK<CoyonedaFPartial<F, A>, CoyonedaOf<F, B>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
160 | internal init(f: @escaping (A) -> CoyonedaOf<F, B>) {
161 | self.f = f
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:196:29: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
194 | }
195 |
196 | private class CoflatMap<F: Comonad, A, B>: CokleisliK<CoyonedaFPartial<F, A>, CoyonedaOf<F, B>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
197 | internal init(f: @escaping (CoyonedaOf<F, A>) -> B) {
198 | self.f = f
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:216:27: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
214 | }
215 |
216 | private class Extract<F: Comonad, A>: CokleisliK<CoyonedaFPartial<F, A>, A> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
217 | internal override init() {}
218 |
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:236:28: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
234 | }
235 |
236 | private class FoldLeft<F: Foldable, A, B>: CokleisliK<CoyonedaFPartial<F, A>, B> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
237 | internal init(b: B, f: @escaping (B, A) -> B) {
238 | self.b = b
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:260:29: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
258 | }
259 |
260 | private class FoldRight<F: Foldable, A, B>: CokleisliK<CoyonedaFPartial<F, A>, Eval<B>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
261 | internal init(b: Eval<B>, f: @escaping (A, Eval<B>) -> Eval<B>) {
262 | self.b = b
/host/spi-builder-workspace/Sources/Bow/Data/Coyoneda.swift:287:29: warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
39 |
40 | /// Partial application of the Coyoneda type constructor, omitting the last parameter.
41 | public final class CoyonedaPartial<F>: Kind<ForCoyoneda, F> {}
| `- note: 'F' previously declared here
42 |
43 | /// Higher Kinded Type alias to improve readability.
:
285 | }
286 |
287 | private class TraverseF<F: Traverse, G: Applicative, A, B>: CokleisliK<CoyonedaFPartial<F, A>, Kind<G, CoyonedaOf<F, B>>> {
| `- warning: generic parameter 'F' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
288 | internal init(f: @escaping (A) -> Kind<G, B>) {
289 | self.f = f
/host/spi-builder-workspace/Sources/Bow/Typeclasses/Functor.swift:123:22: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
121 | /// - Parameter f: Function to be lifted.
122 | /// - Returns: Function in the context implementing this instance of `Functor`.
123 | static func lift<A, B>(_ f: @escaping (A) -> B) -> (Kind<F, A>) -> Kind<F, B> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
124 | { fa in fa.map(f) }
125 | }
/host/spi-builder-workspace/Sources/Bow/Syntax/HigherKinds.swift:10:20: note: 'A' previously declared here
8 | /// class ForOption {}
9 | /// class Option<A>: Kind<ForOption, A> {}
10 | open class Kind<F, A> {
| `- note: 'A' previously declared here
11 | /// Default initializer
12 | public init() {}
/host/spi-builder-workspace/Sources/Bow/Typeclasses/Selective.swift:187:14: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
185 | /// - else: Computation that will be executed if this evaluates to `false`.
186 | /// - Returns: Composition of the computations.
187 | func ifS<A>(then t: Kind<F, A>, else e: Kind<F, A>) -> Kind<F, A> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
188 | F.ifS(self, then: t, else: e)
189 | }
/host/spi-builder-workspace/Sources/Bow/Syntax/HigherKinds.swift:10:20: note: 'A' previously declared here
8 | /// class ForOption {}
9 | /// class Option<A>: Kind<ForOption, A> {}
10 | open class Kind<F, A> {
| `- note: 'A' previously declared here
11 | /// Default initializer
12 | public init() {}
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[92/277] Compiling Bow Function0.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[93/277] Compiling Bow Function1.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[94/277] Compiling Bow FunctionK+Coyoneda.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[95/277] Compiling Bow FunctionK.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[104/277] Compiling Bow Coreader.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[105/277] Compiling Bow Coyoneda.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[106/277] Compiling Bow Day.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[107/277] Compiling Bow Dictionary.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[108/277] Compiling Bow DictionaryK.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
error: emit-module command failed with exit code 1 (use -v to see invocation)
[109/277] Emitting module RxSwift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[110/277] Compiling Bow Tree.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[111/277] Compiling Bow Try.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[112/277] Compiling Bow Validated.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[113/277] Compiling Bow Yoneda.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[114/277] Compiling Bow Zipper.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[115/277] Compiling Bow BoolInstances.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[116/277] Compiling Bow NumberInstances.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[117/277] Compiling Bow OptionInstances.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[118/277] Compiling Bow StringInstances.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[119/277] Compiling Bow BooleanFunctions.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[120/277] Compiling Bow Curry.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[121/277] Compiling Bow HigherKinds.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[122/277] Compiling Bow Memoization.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[123/277] Compiling Bow PartialApplication.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[124/277] Compiling Bow Predef.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[125/277] Compiling Bow Reverse.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[126/277] Compiling Bow EitherT.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[127/277] Compiling Bow EnvT.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[128/277] Compiling Bow OptionT.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[129/277] Compiling Bow Either.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[130/277] Compiling Bow EitherK.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[131/277] Compiling Bow Endo.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[132/277] Compiling Bow Eval.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[133/277] Compiling Bow Exists.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[134/277] Compiling Bow Id.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[135/277] Compiling Bow Ior.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[136/277] Compiling Bow Moore.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[137/277] Compiling Bow NonEmptyArray.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[138/277] Compiling Bow Option.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[139/277] Compiling Bow PairK.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[140/277] Compiling Bow Pairing.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[141/277] Compiling Bow Puller.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[142/277] Compiling Bow Reader.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[143/277] Compiling Bow Result.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[144/277] Compiling Bow Set.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[145/277] Compiling Bow SetK.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[146/277] Compiling Bow Sum.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[147/277] Compiling Bow Trampoline.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
/host/spi-builder-workspace/Sources/Bow/Typeclasses/MonadComprehensions/MonadComprenhensions.swift:43:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
41 | }
42 |
43 | @_functionBuilder
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
44 | public struct BindingsBuilder {
45 | public static func buildBlock<F>(_ instructions: BindingExpression<F>...) -> [BindingExpression<F>] {
/host/spi-builder-workspace/Sources/Bow/Typeclasses/MonadComprehensions/MonadComprenhensions.swift:43:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
41 | }
42 |
43 | @_functionBuilder
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
44 | public struct BindingsBuilder {
45 | public static func buildBlock<F>(_ instructions: BindingExpression<F>...) -> [BindingExpression<F>] {
/host/spi-builder-workspace/Sources/Bow/Typeclasses/MonadComprehensions/MonadComprenhensions.swift:43:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
41 | }
42 |
43 | @_functionBuilder
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
44 | public struct BindingsBuilder {
45 | public static func buildBlock<F>(_ instructions: BindingExpression<F>...) -> [BindingExpression<F>] {
/host/spi-builder-workspace/Sources/Bow/Typeclasses/MonadComprehensions/MonadComprenhensions.swift:43:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
41 | }
42 |
43 | @_functionBuilder
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
44 | public struct BindingsBuilder {
45 | public static func buildBlock<F>(_ instructions: BindingExpression<F>...) -> [BindingExpression<F>] {
/host/spi-builder-workspace/Sources/Bow/Typeclasses/MonadComprehensions/MonadComprenhensions.swift:43:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
41 | }
42 |
43 | @_functionBuilder
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
44 | public struct BindingsBuilder {
45 | public static func buildBlock<F>(_ instructions: BindingExpression<F>...) -> [BindingExpression<F>] {
/host/spi-builder-workspace/Sources/Bow/Typeclasses/MonadComprehensions/MonadComprenhensions.swift:43:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
41 | }
42 |
43 | @_functionBuilder
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
44 | public struct BindingsBuilder {
45 | public static func buildBlock<F>(_ instructions: BindingExpression<F>...) -> [BindingExpression<F>] {
/host/spi-builder-workspace/Sources/Bow/Typeclasses/MonadComprehensions/MonadComprenhensions.swift:43:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
41 | }
42 |
43 | @_functionBuilder
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
44 | public struct BindingsBuilder {
45 | public static func buildBlock<F>(_ instructions: BindingExpression<F>...) -> [BindingExpression<F>] {
/host/spi-builder-workspace/Sources/Bow/Typeclasses/MonadComprehensions/MonadComprenhensions.swift:43:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
41 | }
42 |
43 | @_functionBuilder
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
44 | public struct BindingsBuilder {
45 | public static func buildBlock<F>(_ instructions: BindingExpression<F>...) -> [BindingExpression<F>] {
/host/spi-builder-workspace/Sources/Bow/Typeclasses/MonadComprehensions/MonadComprenhensions.swift:43:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
41 | }
42 |
43 | @_functionBuilder
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
44 | public struct BindingsBuilder {
45 | public static func buildBlock<F>(_ instructions: BindingExpression<F>...) -> [BindingExpression<F>] {
/host/spi-builder-workspace/Sources/Bow/Typeclasses/MonadComprehensions/MonadComprenhensions.swift:43:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
41 | }
42 |
43 | @_functionBuilder
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
44 | public struct BindingsBuilder {
45 | public static func buildBlock<F>(_ instructions: BindingExpression<F>...) -> [BindingExpression<F>] {
/host/spi-builder-workspace/Sources/Bow/Typeclasses/MonadComprehensions/MonadComprenhensions.swift:43:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
41 | }
42 |
43 | @_functionBuilder
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
44 | public struct BindingsBuilder {
45 | public static func buildBlock<F>(_ instructions: BindingExpression<F>...) -> [BindingExpression<F>] {
/host/spi-builder-workspace/Sources/Bow/Typeclasses/MonadComprehensions/MonadComprenhensions.swift:43:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
41 | }
42 |
43 | @_functionBuilder
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
44 | public struct BindingsBuilder {
45 | public static func buildBlock<F>(_ instructions: BindingExpression<F>...) -> [BindingExpression<F>] {
/host/spi-builder-workspace/Sources/Bow/Typeclasses/MonadComprehensions/MonadComprenhensions.swift:43:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
41 | }
42 |
43 | @_functionBuilder
| `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
44 | public struct BindingsBuilder {
45 | public static func buildBlock<F>(_ instructions: BindingExpression<F>...) -> [BindingExpression<F>] {
[161/277] Compiling Bow MonadWriter.swift
/host/spi-builder-workspace/Sources/Bow/Typeclasses/Selective.swift:187:14: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
185 | /// - else: Computation that will be executed if this evaluates to `false`.
186 | /// - Returns: Composition of the computations.
187 | func ifS<A>(then t: Kind<F, A>, else e: Kind<F, A>) -> Kind<F, A> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
188 | F.ifS(self, then: t, else: e)
189 | }
/host/spi-builder-workspace/Sources/Bow/Syntax/HigherKinds.swift:10:20: note: 'A' previously declared here
8 | /// class ForOption {}
9 | /// class Option<A>: Kind<ForOption, A> {}
10 | open class Kind<F, A> {
| `- note: 'A' previously declared here
11 | /// Default initializer
12 | public init() {}
[162/277] Compiling Bow Monoid.swift
/host/spi-builder-workspace/Sources/Bow/Typeclasses/Selective.swift:187:14: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
185 | /// - else: Computation that will be executed if this evaluates to `false`.
186 | /// - Returns: Composition of the computations.
187 | func ifS<A>(then t: Kind<F, A>, else e: Kind<F, A>) -> Kind<F, A> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
188 | F.ifS(self, then: t, else: e)
189 | }
/host/spi-builder-workspace/Sources/Bow/Syntax/HigherKinds.swift:10:20: note: 'A' previously declared here
8 | /// class ForOption {}
9 | /// class Option<A>: Kind<ForOption, A> {}
10 | open class Kind<F, A> {
| `- note: 'A' previously declared here
11 | /// Default initializer
12 | public init() {}
[163/277] Compiling Bow MonoidK.swift
/host/spi-builder-workspace/Sources/Bow/Typeclasses/Selective.swift:187:14: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
185 | /// - else: Computation that will be executed if this evaluates to `false`.
186 | /// - Returns: Composition of the computations.
187 | func ifS<A>(then t: Kind<F, A>, else e: Kind<F, A>) -> Kind<F, A> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
188 | F.ifS(self, then: t, else: e)
189 | }
/host/spi-builder-workspace/Sources/Bow/Syntax/HigherKinds.swift:10:20: note: 'A' previously declared here
8 | /// class ForOption {}
9 | /// class Option<A>: Kind<ForOption, A> {}
10 | open class Kind<F, A> {
| `- note: 'A' previously declared here
11 | /// Default initializer
12 | public init() {}
[164/277] Compiling Bow Monoidal.swift
/host/spi-builder-workspace/Sources/Bow/Typeclasses/Selective.swift:187:14: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
185 | /// - else: Computation that will be executed if this evaluates to `false`.
186 | /// - Returns: Composition of the computations.
187 | func ifS<A>(then t: Kind<F, A>, else e: Kind<F, A>) -> Kind<F, A> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
188 | F.ifS(self, then: t, else: e)
189 | }
/host/spi-builder-workspace/Sources/Bow/Syntax/HigherKinds.swift:10:20: note: 'A' previously declared here
8 | /// class ForOption {}
9 | /// class Option<A>: Kind<ForOption, A> {}
10 | open class Kind<F, A> {
| `- note: 'A' previously declared here
11 | /// Default initializer
12 | public init() {}
[165/277] Compiling Bow NonEmptyReducible.swift
/host/spi-builder-workspace/Sources/Bow/Typeclasses/Selective.swift:187:14: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
185 | /// - else: Computation that will be executed if this evaluates to `false`.
186 | /// - Returns: Composition of the computations.
187 | func ifS<A>(then t: Kind<F, A>, else e: Kind<F, A>) -> Kind<F, A> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
188 | F.ifS(self, then: t, else: e)
189 | }
/host/spi-builder-workspace/Sources/Bow/Syntax/HigherKinds.swift:10:20: note: 'A' previously declared here
8 | /// class ForOption {}
9 | /// class Option<A>: Kind<ForOption, A> {}
10 | open class Kind<F, A> {
| `- note: 'A' previously declared here
11 | /// Default initializer
12 | public init() {}
[166/277] Compiling Bow Reducible.swift
/host/spi-builder-workspace/Sources/Bow/Typeclasses/Selective.swift:187:14: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
185 | /// - else: Computation that will be executed if this evaluates to `false`.
186 | /// - Returns: Composition of the computations.
187 | func ifS<A>(then t: Kind<F, A>, else e: Kind<F, A>) -> Kind<F, A> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
188 | F.ifS(self, then: t, else: e)
189 | }
/host/spi-builder-workspace/Sources/Bow/Syntax/HigherKinds.swift:10:20: note: 'A' previously declared here
8 | /// class ForOption {}
9 | /// class Option<A>: Kind<ForOption, A> {}
10 | open class Kind<F, A> {
| `- note: 'A' previously declared here
11 | /// Default initializer
12 | public init() {}
[167/277] Compiling Bow Selective.swift
/host/spi-builder-workspace/Sources/Bow/Typeclasses/Selective.swift:187:14: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
185 | /// - else: Computation that will be executed if this evaluates to `false`.
186 | /// - Returns: Composition of the computations.
187 | func ifS<A>(then t: Kind<F, A>, else e: Kind<F, A>) -> Kind<F, A> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
188 | F.ifS(self, then: t, else: e)
189 | }
/host/spi-builder-workspace/Sources/Bow/Syntax/HigherKinds.swift:10:20: note: 'A' previously declared here
8 | /// class ForOption {}
9 | /// class Option<A>: Kind<ForOption, A> {}
10 | open class Kind<F, A> {
| `- note: 'A' previously declared here
11 | /// Default initializer
12 | public init() {}
[168/277] Compiling Bow Semigroup.swift
/host/spi-builder-workspace/Sources/Bow/Typeclasses/Selective.swift:187:14: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
185 | /// - else: Computation that will be executed if this evaluates to `false`.
186 | /// - Returns: Composition of the computations.
187 | func ifS<A>(then t: Kind<F, A>, else e: Kind<F, A>) -> Kind<F, A> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
188 | F.ifS(self, then: t, else: e)
189 | }
/host/spi-builder-workspace/Sources/Bow/Syntax/HigherKinds.swift:10:20: note: 'A' previously declared here
8 | /// class ForOption {}
9 | /// class Option<A>: Kind<ForOption, A> {}
10 | open class Kind<F, A> {
| `- note: 'A' previously declared here
11 | /// Default initializer
12 | public init() {}
[169/277] Compiling Bow SemigroupK.swift
/host/spi-builder-workspace/Sources/Bow/Typeclasses/Selective.swift:187:14: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
185 | /// - else: Computation that will be executed if this evaluates to `false`.
186 | /// - Returns: Composition of the computations.
187 | func ifS<A>(then t: Kind<F, A>, else e: Kind<F, A>) -> Kind<F, A> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
188 | F.ifS(self, then: t, else: e)
189 | }
/host/spi-builder-workspace/Sources/Bow/Syntax/HigherKinds.swift:10:20: note: 'A' previously declared here
8 | /// class ForOption {}
9 | /// class Option<A>: Kind<ForOption, A> {}
10 | open class Kind<F, A> {
| `- note: 'A' previously declared here
11 | /// Default initializer
12 | public init() {}
[170/277] Compiling Bow Semigroupal.swift
/host/spi-builder-workspace/Sources/Bow/Typeclasses/Selective.swift:187:14: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
185 | /// - else: Computation that will be executed if this evaluates to `false`.
186 | /// - Returns: Composition of the computations.
187 | func ifS<A>(then t: Kind<F, A>, else e: Kind<F, A>) -> Kind<F, A> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
188 | F.ifS(self, then: t, else: e)
189 | }
/host/spi-builder-workspace/Sources/Bow/Syntax/HigherKinds.swift:10:20: note: 'A' previously declared here
8 | /// class ForOption {}
9 | /// class Option<A>: Kind<ForOption, A> {}
10 | open class Kind<F, A> {
| `- note: 'A' previously declared here
11 | /// Default initializer
12 | public init() {}
[171/277] Compiling Bow Semiring.swift
/host/spi-builder-workspace/Sources/Bow/Typeclasses/Selective.swift:187:14: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
185 | /// - else: Computation that will be executed if this evaluates to `false`.
186 | /// - Returns: Composition of the computations.
187 | func ifS<A>(then t: Kind<F, A>, else e: Kind<F, A>) -> Kind<F, A> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
188 | F.ifS(self, then: t, else: e)
189 | }
/host/spi-builder-workspace/Sources/Bow/Syntax/HigherKinds.swift:10:20: note: 'A' previously declared here
8 | /// class ForOption {}
9 | /// class Option<A>: Kind<ForOption, A> {}
10 | open class Kind<F, A> {
| `- note: 'A' previously declared here
11 | /// Default initializer
12 | public init() {}
[172/277] Compiling Bow Traverse.swift
/host/spi-builder-workspace/Sources/Bow/Typeclasses/Selective.swift:187:14: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
185 | /// - else: Computation that will be executed if this evaluates to `false`.
186 | /// - Returns: Composition of the computations.
187 | func ifS<A>(then t: Kind<F, A>, else e: Kind<F, A>) -> Kind<F, A> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
188 | F.ifS(self, then: t, else: e)
189 | }
/host/spi-builder-workspace/Sources/Bow/Syntax/HigherKinds.swift:10:20: note: 'A' previously declared here
8 | /// class ForOption {}
9 | /// class Option<A>: Kind<ForOption, A> {}
10 | open class Kind<F, A> {
| `- note: 'A' previously declared here
11 | /// Default initializer
12 | public init() {}
[173/277] Compiling Bow TraverseFilter.swift
/host/spi-builder-workspace/Sources/Bow/Typeclasses/Selective.swift:187:14: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
185 | /// - else: Computation that will be executed if this evaluates to `false`.
186 | /// - Returns: Composition of the computations.
187 | func ifS<A>(then t: Kind<F, A>, else e: Kind<F, A>) -> Kind<F, A> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
188 | F.ifS(self, then: t, else: e)
189 | }
/host/spi-builder-workspace/Sources/Bow/Syntax/HigherKinds.swift:10:20: note: 'A' previously declared here
8 | /// class ForOption {}
9 | /// class Option<A>: Kind<ForOption, A> {}
10 | open class Kind<F, A> {
| `- note: 'A' previously declared here
11 | /// Default initializer
12 | public init() {}
[174/277] Compiling RxSwift SynchronizedUnsubscribeType.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[175/277] Compiling RxSwift TailRecursiveSink.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[176/277] Compiling RxSwift Take.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[177/277] Compiling RxSwift TakeLast.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[178/277] Compiling RxSwift TakeUntil.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[179/277] Compiling RxSwift TakeWhile.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[180/277] Compiling RxSwift Throttle.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[181/277] Compiling RxSwift Timeout.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[182/277] Compiling RxSwift Timer.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[183/277] Compiling RxSwift ToArray.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[184/277] Compiling RxSwift Using.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[185/277] Compiling RxSwift VirtualTimeConverterType.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[186/277] Compiling RxSwift VirtualTimeScheduler.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[187/277] Compiling RxSwift Window.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[188/277] Compiling RxSwift WithLatestFrom.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[189/277] Compiling RxSwift Zip+Collection.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[190/277] Compiling RxSwift Zip+arity.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
[191/277] Compiling RxSwift Zip.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/ConcurrentDispatchQueueScheduler.swift:11:8: error: no such module 'Dispatch'
9 | import struct Foundation.Date
10 | import struct Foundation.TimeInterval
11 | import Dispatch
| `- error: no such module 'Dispatch'
12 |
13 | /// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems.
/host/spi-builder-workspace/.build/checkouts/SwiftCheck/Sources/SwiftCheck/Arbitrary.swift:376:9: error: no such module 'Darwin'
374 | import Glibc
375 | #else
376 | import Darwin
| `- error: no such module 'Darwin'
377 | #endif
378 |
/host/spi-builder-workspace/.build/checkouts/SwiftCheck/Sources/SwiftCheck/Arbitrary.swift:376:9: error: no such module 'Darwin'
374 | import Glibc
375 | #else
376 | import Darwin
| `- error: no such module 'Darwin'
377 | #endif
378 |
BUILD FAILURE 6.1 wasm