The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Bow, reference master (a8c1a7), with Swift 6.3 for Android on 10 Apr 2026 14:53:47 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1

Build Log

    |                                               `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
[165/295] Compiling Bow OptionT.swift
[166/295] Compiling Bow StateT.swift
[167/295] Compiling Bow StoreT.swift
[168/295] Compiling Bow TracedT.swift
[169/295] Compiling Bow WriterT.swift
[170/295] Compiling Bow Alternative.swift
[171/295] Compiling Bow Applicative.swift
[172/295] Compiling Bow ApplicativeError.swift
[173/295] Compiling Bow Bimonad.swift
[174/295] Compiling Bow Comonad.swift
[175/295] Compiling Bow ComonadEnv.swift
[176/295] Compiling Bow ComonadStore.swift
[177/295] Compiling Bow ComonadTraced.swift
[178/295] Compiling Bow Zipper.swift
[179/295] Compiling Bow BoolInstances.swift
[180/295] Compiling Bow NumberInstances.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:34:37: error: cannot find type 'NSZone' in scope
 32 |         }
 33 |
 34 |         public func copy(with zone: NSZone? = nil) -> Any {
    |                                     `- error: cannot find type 'NSZone' in scope
 35 |             return self
 36 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:47: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                               `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:52:40: error: cannot find type 'pthread_key_t' in scope
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
    |                                        `- error: cannot find type 'pthread_key_t' in scope
 53 |         defer { key.deallocate() }
 54 |
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:55:15: error: cannot find 'pthread_key_create' in scope
 53 |         defer { key.deallocate() }
 54 |
 55 |         guard pthread_key_create(key, nil) == 0 else {
    |               `- error: cannot find 'pthread_key_create' in scope
 56 |             rxFatalError("isScheduleRequired key creation failed")
 57 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:71: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                                                       `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:68:27: error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 66 |     static var queue : ScheduleQueue? {
 67 |         get {
 68 |             return Thread.getThreadLocalStorageValueForKey(CurrentThreadSchedulerQueueKey.instance)
    |                           `- error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 69 |         }
 70 |         set {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:71:20: error: type 'Thread' has no member 'setThreadLocalStorageValue'
 69 |         }
 70 |         set {
 71 |             Thread.setThreadLocalStorageValue(newValue, forKey: CurrentThreadSchedulerQueueKey.instance)
    |                    `- error: type 'Thread' has no member 'setThreadLocalStorageValue'
 72 |         }
 73 |     }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:78:20: error: cannot find 'pthread_getspecific' in scope
 76 |     public static private(set) var isScheduleRequired: Bool {
 77 |         get {
 78 |             return pthread_getspecific(CurrentThreadScheduler.isScheduleRequiredKey) == nil
    |                    `- error: cannot find 'pthread_getspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:81:16: error: cannot find 'pthread_setspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
 81 |             if pthread_setspecific(CurrentThreadScheduler.isScheduleRequiredKey, isScheduleRequired ? nil : scheduleInProgressSentinel) != 0 {
    |                `- error: cannot find 'pthread_setspecific' in scope
 82 |                 rxFatalError("pthread_setspecific failed")
 83 |             }
[181/295] Compiling Bow OptionInstances.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:34:37: error: cannot find type 'NSZone' in scope
 32 |         }
 33 |
 34 |         public func copy(with zone: NSZone? = nil) -> Any {
    |                                     `- error: cannot find type 'NSZone' in scope
 35 |             return self
 36 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:47: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                               `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:52:40: error: cannot find type 'pthread_key_t' in scope
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
    |                                        `- error: cannot find type 'pthread_key_t' in scope
 53 |         defer { key.deallocate() }
 54 |
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:55:15: error: cannot find 'pthread_key_create' in scope
 53 |         defer { key.deallocate() }
 54 |
 55 |         guard pthread_key_create(key, nil) == 0 else {
    |               `- error: cannot find 'pthread_key_create' in scope
 56 |             rxFatalError("isScheduleRequired key creation failed")
 57 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:71: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                                                       `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:68:27: error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 66 |     static var queue : ScheduleQueue? {
 67 |         get {
 68 |             return Thread.getThreadLocalStorageValueForKey(CurrentThreadSchedulerQueueKey.instance)
    |                           `- error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 69 |         }
 70 |         set {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:71:20: error: type 'Thread' has no member 'setThreadLocalStorageValue'
 69 |         }
 70 |         set {
 71 |             Thread.setThreadLocalStorageValue(newValue, forKey: CurrentThreadSchedulerQueueKey.instance)
    |                    `- error: type 'Thread' has no member 'setThreadLocalStorageValue'
 72 |         }
 73 |     }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:78:20: error: cannot find 'pthread_getspecific' in scope
 76 |     public static private(set) var isScheduleRequired: Bool {
 77 |         get {
 78 |             return pthread_getspecific(CurrentThreadScheduler.isScheduleRequiredKey) == nil
    |                    `- error: cannot find 'pthread_getspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:81:16: error: cannot find 'pthread_setspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
 81 |             if pthread_setspecific(CurrentThreadScheduler.isScheduleRequiredKey, isScheduleRequired ? nil : scheduleInProgressSentinel) != 0 {
    |                `- error: cannot find 'pthread_setspecific' in scope
 82 |                 rxFatalError("pthread_setspecific failed")
 83 |             }
[182/295] Compiling Bow StringInstances.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:34:37: error: cannot find type 'NSZone' in scope
 32 |         }
 33 |
 34 |         public func copy(with zone: NSZone? = nil) -> Any {
    |                                     `- error: cannot find type 'NSZone' in scope
 35 |             return self
 36 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:47: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                               `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:52:40: error: cannot find type 'pthread_key_t' in scope
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
    |                                        `- error: cannot find type 'pthread_key_t' in scope
 53 |         defer { key.deallocate() }
 54 |
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:55:15: error: cannot find 'pthread_key_create' in scope
 53 |         defer { key.deallocate() }
 54 |
 55 |         guard pthread_key_create(key, nil) == 0 else {
    |               `- error: cannot find 'pthread_key_create' in scope
 56 |             rxFatalError("isScheduleRequired key creation failed")
 57 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:71: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                                                       `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:68:27: error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 66 |     static var queue : ScheduleQueue? {
 67 |         get {
 68 |             return Thread.getThreadLocalStorageValueForKey(CurrentThreadSchedulerQueueKey.instance)
    |                           `- error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 69 |         }
 70 |         set {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:71:20: error: type 'Thread' has no member 'setThreadLocalStorageValue'
 69 |         }
 70 |         set {
 71 |             Thread.setThreadLocalStorageValue(newValue, forKey: CurrentThreadSchedulerQueueKey.instance)
    |                    `- error: type 'Thread' has no member 'setThreadLocalStorageValue'
 72 |         }
 73 |     }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:78:20: error: cannot find 'pthread_getspecific' in scope
 76 |     public static private(set) var isScheduleRequired: Bool {
 77 |         get {
 78 |             return pthread_getspecific(CurrentThreadScheduler.isScheduleRequiredKey) == nil
    |                    `- error: cannot find 'pthread_getspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:81:16: error: cannot find 'pthread_setspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
 81 |             if pthread_setspecific(CurrentThreadScheduler.isScheduleRequiredKey, isScheduleRequired ? nil : scheduleInProgressSentinel) != 0 {
    |                `- error: cannot find 'pthread_setspecific' in scope
 82 |                 rxFatalError("pthread_setspecific failed")
 83 |             }
[183/295] Compiling Bow BooleanFunctions.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:34:37: error: cannot find type 'NSZone' in scope
 32 |         }
 33 |
 34 |         public func copy(with zone: NSZone? = nil) -> Any {
    |                                     `- error: cannot find type 'NSZone' in scope
 35 |             return self
 36 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:47: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                               `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:52:40: error: cannot find type 'pthread_key_t' in scope
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
    |                                        `- error: cannot find type 'pthread_key_t' in scope
 53 |         defer { key.deallocate() }
 54 |
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:55:15: error: cannot find 'pthread_key_create' in scope
 53 |         defer { key.deallocate() }
 54 |
 55 |         guard pthread_key_create(key, nil) == 0 else {
    |               `- error: cannot find 'pthread_key_create' in scope
 56 |             rxFatalError("isScheduleRequired key creation failed")
 57 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:71: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                                                       `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:68:27: error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 66 |     static var queue : ScheduleQueue? {
 67 |         get {
 68 |             return Thread.getThreadLocalStorageValueForKey(CurrentThreadSchedulerQueueKey.instance)
    |                           `- error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 69 |         }
 70 |         set {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:71:20: error: type 'Thread' has no member 'setThreadLocalStorageValue'
 69 |         }
 70 |         set {
 71 |             Thread.setThreadLocalStorageValue(newValue, forKey: CurrentThreadSchedulerQueueKey.instance)
    |                    `- error: type 'Thread' has no member 'setThreadLocalStorageValue'
 72 |         }
 73 |     }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:78:20: error: cannot find 'pthread_getspecific' in scope
 76 |     public static private(set) var isScheduleRequired: Bool {
 77 |         get {
 78 |             return pthread_getspecific(CurrentThreadScheduler.isScheduleRequiredKey) == nil
    |                    `- error: cannot find 'pthread_getspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:81:16: error: cannot find 'pthread_setspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
 81 |             if pthread_setspecific(CurrentThreadScheduler.isScheduleRequiredKey, isScheduleRequired ? nil : scheduleInProgressSentinel) != 0 {
    |                `- error: cannot find 'pthread_setspecific' in scope
 82 |                 rxFatalError("pthread_setspecific failed")
 83 |             }
[184/295] Compiling Bow Curry.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:34:37: error: cannot find type 'NSZone' in scope
 32 |         }
 33 |
 34 |         public func copy(with zone: NSZone? = nil) -> Any {
    |                                     `- error: cannot find type 'NSZone' in scope
 35 |             return self
 36 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:47: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                               `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:52:40: error: cannot find type 'pthread_key_t' in scope
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
    |                                        `- error: cannot find type 'pthread_key_t' in scope
 53 |         defer { key.deallocate() }
 54 |
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:55:15: error: cannot find 'pthread_key_create' in scope
 53 |         defer { key.deallocate() }
 54 |
 55 |         guard pthread_key_create(key, nil) == 0 else {
    |               `- error: cannot find 'pthread_key_create' in scope
 56 |             rxFatalError("isScheduleRequired key creation failed")
 57 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:71: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                                                       `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:68:27: error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 66 |     static var queue : ScheduleQueue? {
 67 |         get {
 68 |             return Thread.getThreadLocalStorageValueForKey(CurrentThreadSchedulerQueueKey.instance)
    |                           `- error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 69 |         }
 70 |         set {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:71:20: error: type 'Thread' has no member 'setThreadLocalStorageValue'
 69 |         }
 70 |         set {
 71 |             Thread.setThreadLocalStorageValue(newValue, forKey: CurrentThreadSchedulerQueueKey.instance)
    |                    `- error: type 'Thread' has no member 'setThreadLocalStorageValue'
 72 |         }
 73 |     }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:78:20: error: cannot find 'pthread_getspecific' in scope
 76 |     public static private(set) var isScheduleRequired: Bool {
 77 |         get {
 78 |             return pthread_getspecific(CurrentThreadScheduler.isScheduleRequiredKey) == nil
    |                    `- error: cannot find 'pthread_getspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:81:16: error: cannot find 'pthread_setspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
 81 |             if pthread_setspecific(CurrentThreadScheduler.isScheduleRequiredKey, isScheduleRequired ? nil : scheduleInProgressSentinel) != 0 {
    |                `- error: cannot find 'pthread_setspecific' in scope
 82 |                 rxFatalError("pthread_setspecific failed")
 83 |             }
[185/295] Compiling Bow HigherKinds.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:34:37: error: cannot find type 'NSZone' in scope
 32 |         }
 33 |
 34 |         public func copy(with zone: NSZone? = nil) -> Any {
    |                                     `- error: cannot find type 'NSZone' in scope
 35 |             return self
 36 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:47: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                               `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:52:40: error: cannot find type 'pthread_key_t' in scope
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
    |                                        `- error: cannot find type 'pthread_key_t' in scope
 53 |         defer { key.deallocate() }
 54 |
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:55:15: error: cannot find 'pthread_key_create' in scope
 53 |         defer { key.deallocate() }
 54 |
 55 |         guard pthread_key_create(key, nil) == 0 else {
    |               `- error: cannot find 'pthread_key_create' in scope
 56 |             rxFatalError("isScheduleRequired key creation failed")
 57 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:71: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                                                       `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:68:27: error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 66 |     static var queue : ScheduleQueue? {
 67 |         get {
 68 |             return Thread.getThreadLocalStorageValueForKey(CurrentThreadSchedulerQueueKey.instance)
    |                           `- error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 69 |         }
 70 |         set {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:71:20: error: type 'Thread' has no member 'setThreadLocalStorageValue'
 69 |         }
 70 |         set {
 71 |             Thread.setThreadLocalStorageValue(newValue, forKey: CurrentThreadSchedulerQueueKey.instance)
    |                    `- error: type 'Thread' has no member 'setThreadLocalStorageValue'
 72 |         }
 73 |     }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:78:20: error: cannot find 'pthread_getspecific' in scope
 76 |     public static private(set) var isScheduleRequired: Bool {
 77 |         get {
 78 |             return pthread_getspecific(CurrentThreadScheduler.isScheduleRequiredKey) == nil
    |                    `- error: cannot find 'pthread_getspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:81:16: error: cannot find 'pthread_setspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
 81 |             if pthread_setspecific(CurrentThreadScheduler.isScheduleRequiredKey, isScheduleRequired ? nil : scheduleInProgressSentinel) != 0 {
    |                `- error: cannot find 'pthread_setspecific' in scope
 82 |                 rxFatalError("pthread_setspecific failed")
 83 |             }
[186/295] Compiling Bow Memoization.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:34:37: error: cannot find type 'NSZone' in scope
 32 |         }
 33 |
 34 |         public func copy(with zone: NSZone? = nil) -> Any {
    |                                     `- error: cannot find type 'NSZone' in scope
 35 |             return self
 36 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:47: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                               `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:52:40: error: cannot find type 'pthread_key_t' in scope
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
    |                                        `- error: cannot find type 'pthread_key_t' in scope
 53 |         defer { key.deallocate() }
 54 |
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:55:15: error: cannot find 'pthread_key_create' in scope
 53 |         defer { key.deallocate() }
 54 |
 55 |         guard pthread_key_create(key, nil) == 0 else {
    |               `- error: cannot find 'pthread_key_create' in scope
 56 |             rxFatalError("isScheduleRequired key creation failed")
 57 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:71: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                                                       `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:68:27: error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 66 |     static var queue : ScheduleQueue? {
 67 |         get {
 68 |             return Thread.getThreadLocalStorageValueForKey(CurrentThreadSchedulerQueueKey.instance)
    |                           `- error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 69 |         }
 70 |         set {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:71:20: error: type 'Thread' has no member 'setThreadLocalStorageValue'
 69 |         }
 70 |         set {
 71 |             Thread.setThreadLocalStorageValue(newValue, forKey: CurrentThreadSchedulerQueueKey.instance)
    |                    `- error: type 'Thread' has no member 'setThreadLocalStorageValue'
 72 |         }
 73 |     }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:78:20: error: cannot find 'pthread_getspecific' in scope
 76 |     public static private(set) var isScheduleRequired: Bool {
 77 |         get {
 78 |             return pthread_getspecific(CurrentThreadScheduler.isScheduleRequiredKey) == nil
    |                    `- error: cannot find 'pthread_getspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:81:16: error: cannot find 'pthread_setspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
 81 |             if pthread_setspecific(CurrentThreadScheduler.isScheduleRequiredKey, isScheduleRequired ? nil : scheduleInProgressSentinel) != 0 {
    |                `- error: cannot find 'pthread_setspecific' in scope
 82 |                 rxFatalError("pthread_setspecific failed")
 83 |             }
[187/295] Compiling Bow PartialApplication.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:34:37: error: cannot find type 'NSZone' in scope
 32 |         }
 33 |
 34 |         public func copy(with zone: NSZone? = nil) -> Any {
    |                                     `- error: cannot find type 'NSZone' in scope
 35 |             return self
 36 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:47: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                               `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:52:40: error: cannot find type 'pthread_key_t' in scope
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
    |                                        `- error: cannot find type 'pthread_key_t' in scope
 53 |         defer { key.deallocate() }
 54 |
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:55:15: error: cannot find 'pthread_key_create' in scope
 53 |         defer { key.deallocate() }
 54 |
 55 |         guard pthread_key_create(key, nil) == 0 else {
    |               `- error: cannot find 'pthread_key_create' in scope
 56 |             rxFatalError("isScheduleRequired key creation failed")
 57 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:71: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                                                       `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:68:27: error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 66 |     static var queue : ScheduleQueue? {
 67 |         get {
 68 |             return Thread.getThreadLocalStorageValueForKey(CurrentThreadSchedulerQueueKey.instance)
    |                           `- error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 69 |         }
 70 |         set {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:71:20: error: type 'Thread' has no member 'setThreadLocalStorageValue'
 69 |         }
 70 |         set {
 71 |             Thread.setThreadLocalStorageValue(newValue, forKey: CurrentThreadSchedulerQueueKey.instance)
    |                    `- error: type 'Thread' has no member 'setThreadLocalStorageValue'
 72 |         }
 73 |     }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:78:20: error: cannot find 'pthread_getspecific' in scope
 76 |     public static private(set) var isScheduleRequired: Bool {
 77 |         get {
 78 |             return pthread_getspecific(CurrentThreadScheduler.isScheduleRequiredKey) == nil
    |                    `- error: cannot find 'pthread_getspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:81:16: error: cannot find 'pthread_setspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
 81 |             if pthread_setspecific(CurrentThreadScheduler.isScheduleRequiredKey, isScheduleRequired ? nil : scheduleInProgressSentinel) != 0 {
    |                `- error: cannot find 'pthread_setspecific' in scope
 82 |                 rxFatalError("pthread_setspecific failed")
 83 |             }
[188/295] Compiling Bow Predef.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:34:37: error: cannot find type 'NSZone' in scope
 32 |         }
 33 |
 34 |         public func copy(with zone: NSZone? = nil) -> Any {
    |                                     `- error: cannot find type 'NSZone' in scope
 35 |             return self
 36 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:47: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                               `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:52:40: error: cannot find type 'pthread_key_t' in scope
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
    |                                        `- error: cannot find type 'pthread_key_t' in scope
 53 |         defer { key.deallocate() }
 54 |
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:55:15: error: cannot find 'pthread_key_create' in scope
 53 |         defer { key.deallocate() }
 54 |
 55 |         guard pthread_key_create(key, nil) == 0 else {
    |               `- error: cannot find 'pthread_key_create' in scope
 56 |             rxFatalError("isScheduleRequired key creation failed")
 57 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:71: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                                                       `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:68:27: error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 66 |     static var queue : ScheduleQueue? {
 67 |         get {
 68 |             return Thread.getThreadLocalStorageValueForKey(CurrentThreadSchedulerQueueKey.instance)
    |                           `- error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 69 |         }
 70 |         set {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:71:20: error: type 'Thread' has no member 'setThreadLocalStorageValue'
 69 |         }
 70 |         set {
 71 |             Thread.setThreadLocalStorageValue(newValue, forKey: CurrentThreadSchedulerQueueKey.instance)
    |                    `- error: type 'Thread' has no member 'setThreadLocalStorageValue'
 72 |         }
 73 |     }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:78:20: error: cannot find 'pthread_getspecific' in scope
 76 |     public static private(set) var isScheduleRequired: Bool {
 77 |         get {
 78 |             return pthread_getspecific(CurrentThreadScheduler.isScheduleRequiredKey) == nil
    |                    `- error: cannot find 'pthread_getspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:81:16: error: cannot find 'pthread_setspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
 81 |             if pthread_setspecific(CurrentThreadScheduler.isScheduleRequiredKey, isScheduleRequired ? nil : scheduleInProgressSentinel) != 0 {
    |                `- error: cannot find 'pthread_setspecific' in scope
 82 |                 rxFatalError("pthread_setspecific failed")
 83 |             }
[189/295] Compiling Bow Reverse.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:34:37: error: cannot find type 'NSZone' in scope
 32 |         }
 33 |
 34 |         public func copy(with zone: NSZone? = nil) -> Any {
    |                                     `- error: cannot find type 'NSZone' in scope
 35 |             return self
 36 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:47: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                               `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:52:40: error: cannot find type 'pthread_key_t' in scope
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
    |                                        `- error: cannot find type 'pthread_key_t' in scope
 53 |         defer { key.deallocate() }
 54 |
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:55:15: error: cannot find 'pthread_key_create' in scope
 53 |         defer { key.deallocate() }
 54 |
 55 |         guard pthread_key_create(key, nil) == 0 else {
    |               `- error: cannot find 'pthread_key_create' in scope
 56 |             rxFatalError("isScheduleRequired key creation failed")
 57 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:71: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                                                       `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:68:27: error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 66 |     static var queue : ScheduleQueue? {
 67 |         get {
 68 |             return Thread.getThreadLocalStorageValueForKey(CurrentThreadSchedulerQueueKey.instance)
    |                           `- error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 69 |         }
 70 |         set {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:71:20: error: type 'Thread' has no member 'setThreadLocalStorageValue'
 69 |         }
 70 |         set {
 71 |             Thread.setThreadLocalStorageValue(newValue, forKey: CurrentThreadSchedulerQueueKey.instance)
    |                    `- error: type 'Thread' has no member 'setThreadLocalStorageValue'
 72 |         }
 73 |     }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:78:20: error: cannot find 'pthread_getspecific' in scope
 76 |     public static private(set) var isScheduleRequired: Bool {
 77 |         get {
 78 |             return pthread_getspecific(CurrentThreadScheduler.isScheduleRequiredKey) == nil
    |                    `- error: cannot find 'pthread_getspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:81:16: error: cannot find 'pthread_setspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
 81 |             if pthread_setspecific(CurrentThreadScheduler.isScheduleRequiredKey, isScheduleRequired ? nil : scheduleInProgressSentinel) != 0 {
    |                `- error: cannot find 'pthread_setspecific' in scope
 82 |                 rxFatalError("pthread_setspecific failed")
 83 |             }
[190/295] Compiling Bow EitherT.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:34:37: error: cannot find type 'NSZone' in scope
 32 |         }
 33 |
 34 |         public func copy(with zone: NSZone? = nil) -> Any {
    |                                     `- error: cannot find type 'NSZone' in scope
 35 |             return self
 36 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:47: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                               `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:52:40: error: cannot find type 'pthread_key_t' in scope
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
    |                                        `- error: cannot find type 'pthread_key_t' in scope
 53 |         defer { key.deallocate() }
 54 |
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:55:15: error: cannot find 'pthread_key_create' in scope
 53 |         defer { key.deallocate() }
 54 |
 55 |         guard pthread_key_create(key, nil) == 0 else {
    |               `- error: cannot find 'pthread_key_create' in scope
 56 |             rxFatalError("isScheduleRequired key creation failed")
 57 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:71: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                                                       `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:68:27: error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 66 |     static var queue : ScheduleQueue? {
 67 |         get {
 68 |             return Thread.getThreadLocalStorageValueForKey(CurrentThreadSchedulerQueueKey.instance)
    |                           `- error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 69 |         }
 70 |         set {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:71:20: error: type 'Thread' has no member 'setThreadLocalStorageValue'
 69 |         }
 70 |         set {
 71 |             Thread.setThreadLocalStorageValue(newValue, forKey: CurrentThreadSchedulerQueueKey.instance)
    |                    `- error: type 'Thread' has no member 'setThreadLocalStorageValue'
 72 |         }
 73 |     }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:78:20: error: cannot find 'pthread_getspecific' in scope
 76 |     public static private(set) var isScheduleRequired: Bool {
 77 |         get {
 78 |             return pthread_getspecific(CurrentThreadScheduler.isScheduleRequiredKey) == nil
    |                    `- error: cannot find 'pthread_getspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:81:16: error: cannot find 'pthread_setspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
 81 |             if pthread_setspecific(CurrentThreadScheduler.isScheduleRequiredKey, isScheduleRequired ? nil : scheduleInProgressSentinel) != 0 {
    |                `- error: cannot find 'pthread_setspecific' in scope
 82 |                 rxFatalError("pthread_setspecific failed")
 83 |             }
[191/295] Compiling Bow EnvT.swift
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:34:37: error: cannot find type 'NSZone' in scope
 32 |         }
 33 |
 34 |         public func copy(with zone: NSZone? = nil) -> Any {
    |                                     `- error: cannot find type 'NSZone' in scope
 35 |             return self
 36 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:47: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                               `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:52:40: error: cannot find type 'pthread_key_t' in scope
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
    |                                        `- error: cannot find type 'pthread_key_t' in scope
 53 |         defer { key.deallocate() }
 54 |
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:55:15: error: cannot find 'pthread_key_create' in scope
 53 |         defer { key.deallocate() }
 54 |
 55 |         guard pthread_key_create(key, nil) == 0 else {
    |               `- error: cannot find 'pthread_key_create' in scope
 56 |             rxFatalError("isScheduleRequired key creation failed")
 57 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:71: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                                                       `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:68:27: error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 66 |     static var queue : ScheduleQueue? {
 67 |         get {
 68 |             return Thread.getThreadLocalStorageValueForKey(CurrentThreadSchedulerQueueKey.instance)
    |                           `- error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 69 |         }
 70 |         set {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:71:20: error: type 'Thread' has no member 'setThreadLocalStorageValue'
 69 |         }
 70 |         set {
 71 |             Thread.setThreadLocalStorageValue(newValue, forKey: CurrentThreadSchedulerQueueKey.instance)
    |                    `- error: type 'Thread' has no member 'setThreadLocalStorageValue'
 72 |         }
 73 |     }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:78:20: error: cannot find 'pthread_getspecific' in scope
 76 |     public static private(set) var isScheduleRequired: Bool {
 77 |         get {
 78 |             return pthread_getspecific(CurrentThreadScheduler.isScheduleRequiredKey) == nil
    |                    `- error: cannot find 'pthread_getspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:81:16: error: cannot find 'pthread_setspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
 81 |             if pthread_setspecific(CurrentThreadScheduler.isScheduleRequiredKey, isScheduleRequired ? nil : scheduleInProgressSentinel) != 0 {
    |                `- error: cannot find 'pthread_setspecific' in scope
 82 |                 rxFatalError("pthread_setspecific failed")
 83 |             }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:34:37: error: cannot find type 'NSZone' in scope
 32 |         }
 33 |
 34 |         public func copy(with zone: NSZone? = nil) -> Any {
    |                                     `- error: cannot find type 'NSZone' in scope
 35 |             return self
 36 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:47: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                               `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:52:40: error: cannot find type 'pthread_key_t' in scope
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
    |                                        `- error: cannot find type 'pthread_key_t' in scope
 53 |         defer { key.deallocate() }
 54 |
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:55:15: error: cannot find 'pthread_key_create' in scope
 53 |         defer { key.deallocate() }
 54 |
 55 |         guard pthread_key_create(key, nil) == 0 else {
    |               `- error: cannot find 'pthread_key_create' in scope
 56 |             rxFatalError("isScheduleRequired key creation failed")
 57 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:71: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                                                       `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:68:27: error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 66 |     static var queue : ScheduleQueue? {
 67 |         get {
 68 |             return Thread.getThreadLocalStorageValueForKey(CurrentThreadSchedulerQueueKey.instance)
    |                           `- error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 69 |         }
 70 |         set {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:71:20: error: type 'Thread' has no member 'setThreadLocalStorageValue'
 69 |         }
 70 |         set {
 71 |             Thread.setThreadLocalStorageValue(newValue, forKey: CurrentThreadSchedulerQueueKey.instance)
    |                    `- error: type 'Thread' has no member 'setThreadLocalStorageValue'
 72 |         }
 73 |     }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:78:20: error: cannot find 'pthread_getspecific' in scope
 76 |     public static private(set) var isScheduleRequired: Bool {
 77 |         get {
 78 |             return pthread_getspecific(CurrentThreadScheduler.isScheduleRequiredKey) == nil
    |                    `- error: cannot find 'pthread_getspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:81:16: error: cannot find 'pthread_setspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
 81 |             if pthread_setspecific(CurrentThreadScheduler.isScheduleRequiredKey, isScheduleRequired ? nil : scheduleInProgressSentinel) != 0 {
    |                `- error: cannot find 'pthread_setspecific' in scope
 82 |                 rxFatalError("pthread_setspecific failed")
 83 |             }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:34:37: error: cannot find type 'NSZone' in scope
 32 |         }
 33 |
 34 |         public func copy(with zone: NSZone? = nil) -> Any {
    |                                     `- error: cannot find type 'NSZone' in scope
 35 |             return self
 36 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:47: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                               `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:52:40: error: cannot find type 'pthread_key_t' in scope
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
    |                                        `- error: cannot find type 'pthread_key_t' in scope
 53 |         defer { key.deallocate() }
 54 |
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:55:15: error: cannot find 'pthread_key_create' in scope
 53 |         defer { key.deallocate() }
 54 |
 55 |         guard pthread_key_create(key, nil) == 0 else {
    |               `- error: cannot find 'pthread_key_create' in scope
 56 |             rxFatalError("isScheduleRequired key creation failed")
 57 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:71: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                                                       `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:68:27: error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 66 |     static var queue : ScheduleQueue? {
 67 |         get {
 68 |             return Thread.getThreadLocalStorageValueForKey(CurrentThreadSchedulerQueueKey.instance)
    |                           `- error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 69 |         }
 70 |         set {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:71:20: error: type 'Thread' has no member 'setThreadLocalStorageValue'
 69 |         }
 70 |         set {
 71 |             Thread.setThreadLocalStorageValue(newValue, forKey: CurrentThreadSchedulerQueueKey.instance)
    |                    `- error: type 'Thread' has no member 'setThreadLocalStorageValue'
 72 |         }
 73 |     }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:78:20: error: cannot find 'pthread_getspecific' in scope
 76 |     public static private(set) var isScheduleRequired: Bool {
 77 |         get {
 78 |             return pthread_getspecific(CurrentThreadScheduler.isScheduleRequiredKey) == nil
    |                    `- error: cannot find 'pthread_getspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:81:16: error: cannot find 'pthread_setspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
 81 |             if pthread_setspecific(CurrentThreadScheduler.isScheduleRequiredKey, isScheduleRequired ? nil : scheduleInProgressSentinel) != 0 {
    |                `- error: cannot find 'pthread_setspecific' in scope
 82 |                 rxFatalError("pthread_setspecific failed")
 83 |             }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:34:37: error: cannot find type 'NSZone' in scope
 32 |         }
 33 |
 34 |         public func copy(with zone: NSZone? = nil) -> Any {
    |                                     `- error: cannot find type 'NSZone' in scope
 35 |             return self
 36 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:47: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                               `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:52:40: error: cannot find type 'pthread_key_t' in scope
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
    |                                        `- error: cannot find type 'pthread_key_t' in scope
 53 |         defer { key.deallocate() }
 54 |
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:55:15: error: cannot find 'pthread_key_create' in scope
 53 |         defer { key.deallocate() }
 54 |
 55 |         guard pthread_key_create(key, nil) == 0 else {
    |               `- error: cannot find 'pthread_key_create' in scope
 56 |             rxFatalError("isScheduleRequired key creation failed")
 57 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:71: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                                                       `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:68:27: error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 66 |     static var queue : ScheduleQueue? {
 67 |         get {
 68 |             return Thread.getThreadLocalStorageValueForKey(CurrentThreadSchedulerQueueKey.instance)
    |                           `- error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 69 |         }
 70 |         set {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:71:20: error: type 'Thread' has no member 'setThreadLocalStorageValue'
 69 |         }
 70 |         set {
 71 |             Thread.setThreadLocalStorageValue(newValue, forKey: CurrentThreadSchedulerQueueKey.instance)
    |                    `- error: type 'Thread' has no member 'setThreadLocalStorageValue'
 72 |         }
 73 |     }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:78:20: error: cannot find 'pthread_getspecific' in scope
 76 |     public static private(set) var isScheduleRequired: Bool {
 77 |         get {
 78 |             return pthread_getspecific(CurrentThreadScheduler.isScheduleRequiredKey) == nil
    |                    `- error: cannot find 'pthread_getspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:81:16: error: cannot find 'pthread_setspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
 81 |             if pthread_setspecific(CurrentThreadScheduler.isScheduleRequiredKey, isScheduleRequired ? nil : scheduleInProgressSentinel) != 0 {
    |                `- error: cannot find 'pthread_setspecific' in scope
 82 |                 rxFatalError("pthread_setspecific failed")
 83 |             }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:34:37: error: cannot find type 'NSZone' in scope
 32 |         }
 33 |
 34 |         public func copy(with zone: NSZone? = nil) -> Any {
    |                                     `- error: cannot find type 'NSZone' in scope
 35 |             return self
 36 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:47: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                               `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:52:40: error: cannot find type 'pthread_key_t' in scope
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
    |                                        `- error: cannot find type 'pthread_key_t' in scope
 53 |         defer { key.deallocate() }
 54 |
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:55:15: error: cannot find 'pthread_key_create' in scope
 53 |         defer { key.deallocate() }
 54 |
 55 |         guard pthread_key_create(key, nil) == 0 else {
    |               `- error: cannot find 'pthread_key_create' in scope
 56 |             rxFatalError("isScheduleRequired key creation failed")
 57 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:71: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                                                       `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:68:27: error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 66 |     static var queue : ScheduleQueue? {
 67 |         get {
 68 |             return Thread.getThreadLocalStorageValueForKey(CurrentThreadSchedulerQueueKey.instance)
    |                           `- error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 69 |         }
 70 |         set {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:71:20: error: type 'Thread' has no member 'setThreadLocalStorageValue'
 69 |         }
 70 |         set {
 71 |             Thread.setThreadLocalStorageValue(newValue, forKey: CurrentThreadSchedulerQueueKey.instance)
    |                    `- error: type 'Thread' has no member 'setThreadLocalStorageValue'
 72 |         }
 73 |     }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:78:20: error: cannot find 'pthread_getspecific' in scope
 76 |     public static private(set) var isScheduleRequired: Bool {
 77 |         get {
 78 |             return pthread_getspecific(CurrentThreadScheduler.isScheduleRequiredKey) == nil
    |                    `- error: cannot find 'pthread_getspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:81:16: error: cannot find 'pthread_setspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
 81 |             if pthread_setspecific(CurrentThreadScheduler.isScheduleRequiredKey, isScheduleRequired ? nil : scheduleInProgressSentinel) != 0 {
    |                `- error: cannot find 'pthread_setspecific' in scope
 82 |                 rxFatalError("pthread_setspecific failed")
 83 |             }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:34:37: error: cannot find type 'NSZone' in scope
 32 |         }
 33 |
 34 |         public func copy(with zone: NSZone? = nil) -> Any {
    |                                     `- error: cannot find type 'NSZone' in scope
 35 |             return self
 36 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:47: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                               `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:52:40: error: cannot find type 'pthread_key_t' in scope
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
    |                                        `- error: cannot find type 'pthread_key_t' in scope
 53 |         defer { key.deallocate() }
 54 |
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:55:15: error: cannot find 'pthread_key_create' in scope
 53 |         defer { key.deallocate() }
 54 |
 55 |         guard pthread_key_create(key, nil) == 0 else {
    |               `- error: cannot find 'pthread_key_create' in scope
 56 |             rxFatalError("isScheduleRequired key creation failed")
 57 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:71: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                                                       `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:68:27: error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 66 |     static var queue : ScheduleQueue? {
 67 |         get {
 68 |             return Thread.getThreadLocalStorageValueForKey(CurrentThreadSchedulerQueueKey.instance)
    |                           `- error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 69 |         }
 70 |         set {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:71:20: error: type 'Thread' has no member 'setThreadLocalStorageValue'
 69 |         }
 70 |         set {
 71 |             Thread.setThreadLocalStorageValue(newValue, forKey: CurrentThreadSchedulerQueueKey.instance)
    |                    `- error: type 'Thread' has no member 'setThreadLocalStorageValue'
 72 |         }
 73 |     }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:78:20: error: cannot find 'pthread_getspecific' in scope
 76 |     public static private(set) var isScheduleRequired: Bool {
 77 |         get {
 78 |             return pthread_getspecific(CurrentThreadScheduler.isScheduleRequiredKey) == nil
    |                    `- error: cannot find 'pthread_getspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:81:16: error: cannot find 'pthread_setspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
 81 |             if pthread_setspecific(CurrentThreadScheduler.isScheduleRequiredKey, isScheduleRequired ? nil : scheduleInProgressSentinel) != 0 {
    |                `- error: cannot find 'pthread_setspecific' in scope
 82 |                 rxFatalError("pthread_setspecific failed")
 83 |             }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:34:37: error: cannot find type 'NSZone' in scope
 32 |         }
 33 |
 34 |         public func copy(with zone: NSZone? = nil) -> Any {
    |                                     `- error: cannot find type 'NSZone' in scope
 35 |             return self
 36 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:47: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                               `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:52:40: error: cannot find type 'pthread_key_t' in scope
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
    |                                        `- error: cannot find type 'pthread_key_t' in scope
 53 |         defer { key.deallocate() }
 54 |
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:55:15: error: cannot find 'pthread_key_create' in scope
 53 |         defer { key.deallocate() }
 54 |
 55 |         guard pthread_key_create(key, nil) == 0 else {
    |               `- error: cannot find 'pthread_key_create' in scope
 56 |             rxFatalError("isScheduleRequired key creation failed")
 57 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:71: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                                                       `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:68:27: error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 66 |     static var queue : ScheduleQueue? {
 67 |         get {
 68 |             return Thread.getThreadLocalStorageValueForKey(CurrentThreadSchedulerQueueKey.instance)
    |                           `- error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 69 |         }
 70 |         set {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:71:20: error: type 'Thread' has no member 'setThreadLocalStorageValue'
 69 |         }
 70 |         set {
 71 |             Thread.setThreadLocalStorageValue(newValue, forKey: CurrentThreadSchedulerQueueKey.instance)
    |                    `- error: type 'Thread' has no member 'setThreadLocalStorageValue'
 72 |         }
 73 |     }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:78:20: error: cannot find 'pthread_getspecific' in scope
 76 |     public static private(set) var isScheduleRequired: Bool {
 77 |         get {
 78 |             return pthread_getspecific(CurrentThreadScheduler.isScheduleRequiredKey) == nil
    |                    `- error: cannot find 'pthread_getspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:81:16: error: cannot find 'pthread_setspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
 81 |             if pthread_setspecific(CurrentThreadScheduler.isScheduleRequiredKey, isScheduleRequired ? nil : scheduleInProgressSentinel) != 0 {
    |                `- error: cannot find 'pthread_setspecific' in scope
 82 |                 rxFatalError("pthread_setspecific failed")
 83 |             }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:34:37: error: cannot find type 'NSZone' in scope
 32 |         }
 33 |
 34 |         public func copy(with zone: NSZone? = nil) -> Any {
    |                                     `- error: cannot find type 'NSZone' in scope
 35 |             return self
 36 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:47: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                               `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:52:40: error: cannot find type 'pthread_key_t' in scope
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
    |                                        `- error: cannot find type 'pthread_key_t' in scope
 53 |         defer { key.deallocate() }
 54 |
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:55:15: error: cannot find 'pthread_key_create' in scope
 53 |         defer { key.deallocate() }
 54 |
 55 |         guard pthread_key_create(key, nil) == 0 else {
    |               `- error: cannot find 'pthread_key_create' in scope
 56 |             rxFatalError("isScheduleRequired key creation failed")
 57 |         }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:51:71: error: cannot find type 'pthread_key_t' in scope
 49 |     public static let instance = CurrentThreadScheduler()
 50 |
 51 |     private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in
    |                                                                       `- error: cannot find type 'pthread_key_t' in scope
 52 |         let key = UnsafeMutablePointer<pthread_key_t>.allocate(capacity: 1)
 53 |         defer { key.deallocate() }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:68:27: error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 66 |     static var queue : ScheduleQueue? {
 67 |         get {
 68 |             return Thread.getThreadLocalStorageValueForKey(CurrentThreadSchedulerQueueKey.instance)
    |                           `- error: type 'Thread' has no member 'getThreadLocalStorageValueForKey'
 69 |         }
 70 |         set {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:71:20: error: type 'Thread' has no member 'setThreadLocalStorageValue'
 69 |         }
 70 |         set {
 71 |             Thread.setThreadLocalStorageValue(newValue, forKey: CurrentThreadSchedulerQueueKey.instance)
    |                    `- error: type 'Thread' has no member 'setThreadLocalStorageValue'
 72 |         }
 73 |     }
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:78:20: error: cannot find 'pthread_getspecific' in scope
 76 |     public static private(set) var isScheduleRequired: Bool {
 77 |         get {
 78 |             return pthread_getspecific(CurrentThreadScheduler.isScheduleRequiredKey) == nil
    |                    `- error: cannot find 'pthread_getspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
/host/spi-builder-workspace/.build/checkouts/RxSwift/Sources/RxSwift/CurrentThreadScheduler.swift:81:16: error: cannot find 'pthread_setspecific' in scope
 79 |         }
 80 |         set(isScheduleRequired) {
 81 |             if pthread_setspecific(CurrentThreadScheduler.isScheduleRequiredKey, isScheduleRequired ? nil : scheduleInProgressSentinel) != 0 {
    |                `- error: cannot find 'pthread_setspecific' in scope
 82 |                 rxFatalError("pthread_setspecific failed")
 83 |             }
[227/295] Compiling Bow Coreader.swift
[228/295] Compiling Bow Coyoneda.swift
[229/295] Compiling Bow Day.swift
[230/295] Compiling Bow Dictionary.swift
[231/295] Compiling Bow DictionaryK.swift
[232/295] Compiling Bow Either.swift
[233/295] Compiling Bow EitherK.swift
[234/295] Compiling Bow Endo.swift
[235/295] Compiling Bow Eval.swift
[236/295] Compiling Bow Exists.swift
[237/295] Compiling Bow Id.swift
[238/295] Compiling Bow Ior.swift
[239/295] Compiling Bow Moore.swift
[240/295] Compiling Bow NonEmptyArray.swift
[251/295] Compiling RxSwift SynchronizedUnsubscribeType.swift
[252/295] Compiling RxSwift TailRecursiveSink.swift
[253/295] Compiling RxSwift Take.swift
[254/295] Compiling RxSwift TakeLast.swift
[255/295] Compiling RxSwift TakeUntil.swift
[256/295] Compiling RxSwift TakeWhile.swift
[257/295] Compiling RxSwift Throttle.swift
[258/295] Compiling RxSwift Timeout.swift
[259/295] Compiling RxSwift Timer.swift
[260/295] Compiling RxSwift ToArray.swift
[261/295] Compiling RxSwift Using.swift
[262/295] Compiling RxSwift VirtualTimeConverterType.swift
[263/295] Compiling RxSwift VirtualTimeScheduler.swift
[264/295] Compiling RxSwift Window.swift
[265/295] Compiling RxSwift WithLatestFrom.swift
[266/295] Compiling RxSwift Zip+Collection.swift
[267/295] Compiling RxSwift Zip+arity.swift
[268/295] Compiling RxSwift Zip.swift
/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/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/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/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/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
BUILD FAILURE 6.3 android