partition signature: partition(predicate: function: boolean, thisArg: any): [Observable, Observable] Split one observable into two based on provided predicate. Examples Example ...
throttle signature: throttle(durationSelector: function(value): Observable | Promise): Observable Emit value only when duration, determined by provided function, has passed. Exa...
defaultIfEmpty signature: defaultIfEmpty(defaultValue: any): Observable Emit given value if nothing is emitted before completion. Examples Example 1: Default for empty value Ex...
mergeAll signature: mergeAll(concurrent: number): Observable Collect and subscribe to all observables. Examples Example 1: mergeAll with promises Example 2: mergeAll with concu...