#combining mutliple asnyc ressourses like in RxJs with combineLatest?
4 messages ยท Page 1 of 1 (latest)
Assuming you mean an operator like this https://rxjs.dev/api/operators/combineLatestWith, I think all you need is:
() => [resource1(), resource2()]
ahh cool will try it out. are there any other solid examples showcasing other rxjs ops in a solid way? like switchMap, scan, doubounce, tap, etc?๐