Sendability errors in Swift might make you wonder if you should be adding “Sendable” to all your types. It seems innocent enough, and don’t we want all our types to be concurrency-safe?
The answer: an emphatic NO!
Take great care making a type sendable. Rules of thumb:
• Simple value that will never hold non-sendable data Good candidate.
• Generic type? Might want conditional sendability.
• Encapsulated data that MUST cross isolation? You might have no choice.
Learn why: https://www.pointfree.co/episodes/ep360-isolation-mutex














