Reading List
Swift Proposal: weak let from Michael Tsai RSS feed.
Swift Proposal: weak let
SE 0481: Currently, Swift classes with weak stored properties cannot be Sendable, because weak properties have to be mutable, and mutable properties are not allowed in Sendable classes[…][…]In fact, wrapping weak references in a single-property struct is a viable workaround to the var restriction in both properties and captures[…] The existence of this simple workaround […]