Timothy Gass

Results 3 comments of Timothy Gass

My understanding is that `@preconcurrency` would essentially tell the compiler to not enforce the strict concurrency rules that require Sendable in that particular closure's nested closures to make it compatible...

Could we simply wrap all functions in an `@unchecked Sendable` to keep the current functionality and disable the errors associated with Swift 6? That way, we disable the Sendable checking,...

@mrousavy Awesome! Thanks! This is probably the most ideal of all the Swift solutions. It is a bummer that it causes a minor hit to performance, but I guess Swift...