Keith Bauer
Keith Bauer
### Description In swift 5, this compiles: ``` let a = 1 let x = [ a, a, nil, a ] let y = [ a, a, nil, a ].map(\.?.magnitude)...
### Description Where a library is built with Swift 5, with ABI resilience, and then called from Swift 6, inherited protocols cause a crash at runtime. Rebuilding the framework with...
### Description I have a package with two types: ```swift open class MyButton: UIButton { public typealias ActionHandler = @MainActor () -> Void open var actionHandler: ActionHandler? } public final...
### 📒 Description FlagValueSourceCoordinator initializer wasn't safe if the non-sendable source continued to be used after it was secured by the lock. ### 🔍 Detailed Design This PR splits the...
### 📒 Description Remove dangerous FlagValueDictionary functionality: * It's internally locked, so not safe for it to conform to Collection * It's a reference type, so shouldn't conform to Equatable...