Intermediate Swift
Q50 / 100

What is the Sendable protocol?

Correct! Well done.

Incorrect.

The correct answer is B) A marker protocol indicating a type is safe to share across concurrency domains (actors and tasks)

B

Correct Answer

A marker protocol indicating a type is safe to share across concurrency domains (actors and tasks)

Explanation

Sendable types can be safely transferred across actor boundaries. Value types with Sendable properties are implicitly Sendable. The compiler enforces this.

Progress
50/100