final class UnsafeMutableTransferBox<Wrapped>
UnsafeMutableTransferBox
can be used to make non-Sendable
values Sendable
and mutable. It can be used to capture local mutable values in a @Sendable
closure and mutate them from within the closure. As the name implies, the usage of this is unsafe because it disables the sendable checking of the compiler and does not add any synchronisation.