How to use the @reactivex/rxjs/dist/cjs/Observable.Observable.combineLatest function in @reactivex/rxjs

To help you get started, we’ve selected a few @reactivex/rxjs examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github reactive-react / xreact / src / xs / rx.ts View on Github external
StreamOps.prototype.combine = function(f, ...v) {
  return Observable.combineLatest(v, f)
}
StreamOps.prototype.filter = function <a>(f: (a: A) =&gt; boolean, fa: Observable</a><a>): Observable</a><a> {</a>
github reactive-react / xreact / src / xs / rx.ts View on Github external
StreamOps.prototype.combine = function(f, ...v) {
  return RxStream.combineLatest(v, f)
}
StreamOps.prototype.filter = function <a>(f: (a: A) =&gt; boolean, fa: RxStream</a><a>): RxStream</a><a> {</a>