Ios swift – What is the point of `Sendable` protocol in Swift
Marking a class or function as Sendable ensures it is safe to pass across concurrent boundaries, value types are safe as they implement copy on write, etc. we all find in Swift language documentation. But my point is being Sendable…