Why does Swift not resume an asynchronous function on the same thread it was started? – Ios swift
In the introductory section of the Concurrency chapter of "The Swift Programming Language" I read: When an asynchronous function resumes, Swift doesn’t make any guarantee about which thread that function will run on. This surprised me. It seems odd, comparing…