#swift-5.5

Found 4 articles tagged with #swift-5.5

What are actors in Swift

An actor is a reference type that protects access to its mutable state, and is introduced with the keyword `actor`.

Jul 30, 2022#swift#swift-5.5

Swift Global Actors

Global actors make it possible to safely work with global variables in a concurrent program, as well as modeling other global program constraints.

Swift `async let` Bindings

A simple way, similar to a `let` binding, to create child tasks and await their results using `async let` declarations.

Swift Concurrency Model

Everything you need to build elegant asynchronous apps after concurrency features introduced in Swift 5.5 like async/await, Tasks, and Actors.