Problem Statement
Which Swift feature introduces a high-level way to manage mutable state safely across concurrency domains?
Explanation
Swift’s `actor` type is designed to safely manage mutable state in concurrent environments by isolating state and guaranteeing safe access across asynchronous tasks. It’s part of Swift’s concurrency model combining async/await with structured concurrency. This is a modern topic in iOS and Swift interviews.