5 ms·
IMO async/await and Combine are two completely different things. What is the alternative to Combine's CurrentValueSubject or combineLatest()?
by storoj 1y ago
IMO async/await and Combine are two completely different things.
What is the alternative to Combine's CurrentValueSubject or combineLatest()?
- lukeh 1y agoAsyncExtensions implements many Combine-like patterns in structured concurrency.
- andrekandre 1y ago> What is the alternative to Combine's CurrentValueSubject or combineLatest()? combine latest et al can be found in async algorithms from apple* https://github.com/apple/swift-async-algorithms https://github.com/apple/swift-async-algorithms * though current value subject is not there its not hard to make one if you need it