Ios swift – Getting "Task-isolated value of type '() async -> ()' passed as a strongly transferred parameter" in Swift 6
In my Swift 5 project I have this extension to pass an async function to Publisher.map: import Combine public extension Publisher { func asyncMap<T>( _ asyncFunc: @escaping (Output) async -> T ) ->…