migrating-to-swift-concurrency
Installation
SKILL.md
Swift Concurrency Migration Guide
The complete content of the Swift Concurrency Migration Guide by Apple. This guide helps you migrate your code to take advantage of Swift's data-race safety guarantees and the Swift 6 language mode.
Documentation
- Data Race Safety (Guide/DataRaceSafety.md): Learn about the fundamental concepts Swift uses to enable data-race-free
- Migration Strategy (Guide/MigrationStrategy.md): Get started migrating your project to the Swift 6 language mode.
- Enable data-race safety checking (Guide/EnableDataRaceSafety.md): Use Swift 6 to get full data-race safety checking or add checking to an existing Swift 5 project.
- Common Compiler Errors (Guide/CommonProblems.md): Identify, understand, and address common problems you can encounter while
- Incremental Adoption (Guide/IncrementalAdoption.md): Learn how you can introduce Swift concurrency features into your project
- Migrating to upcoming language features (Guide/FeatureMigration.md): Migrate your project to upcoming language features.
- Source Compatibility (Guide/SourceCompatibility.md): See an overview of potential source compatibility issues.
- Library Evolution (Guide/LibraryEvolution.md): Annotate library APIs for concurrency while preserving source and ABI
- Runtime Behavior (Guide/RuntimeBehavior.md): Learn how Swift concurrency runtime semantics differ from other runtimes you may
Code Examples
Swift source files demonstrating migration patterns and concurrency concepts: