Combine zip vs combineLatest
Write a Combine pipeline that sends two different network requests (user profile, account list) at the same time and emits a result once, only when both have completed. Would you use zip or combineLatest, and why?
Combine zip vs combineLatest
Write a Combine pipeline that sends two different network requests (user profile, account list) at the same time and emits a result once, only when both have completed. Would you use zip or combineLatest, and why?
ConcurrencyShort answerBasics
When a screen appears you call three APIs in parallel, profile, feed, and notifications, …
#async-let
ConcurrencyMultiple choiceAdvanced
Which of the following statements about structured concurrency (async let, TaskGroup) are…
#async-let
ConcurrencyMultiple choiceBasics
You want to call the API once, 300ms after typing stops, instead of on every keystroke in…
#combine
ConcurrencyMultiple choiceIntro
In Swift Concurrency, if fetchProfile() and fetchFeed() each take 1 second, which stateme…
#async-let