import { ObservableInput } from '../types'; import { Observable } from '../Observable'; /** * Splits the source Observable into two, one with values that satisfy a * predicate, and another with values that don't satisfy the predicate. * * <span class="informal">It's like {@link filter}, but returns two Observables: * one like the output of {@link filter}, and the other with values that did not * pass the condition.</span> * *  * * `partition` outputs an array with two Observables that partition the values * from the source Observable through the given `predicate` function. The first * Observable in that array emits source values for which the predicate argument * returns true. The second Observable emits source values for which the * predicate returns false. The first behaves like {@link filter} and the second * behaves like {@link filter} with the predicate negated. * * ## Example * Partition a set of numbers into odds and evens observables * ```ts * import { of, partition } from 'rxjs'; * * const observableValues = of(1, 2, 3, 4, 5, 6); * const [evens$, odds$] = partition(observableValues, (value, index) => value % 2 === 0); * * odds$.subscribe(x => console.log('odds', x)); * evens$.subscribe(x => console.log('evens', x)); * * // Logs: * // odds 1 * // odds 3 * // odds 5 * // evens 2 * // evens 4 * // evens 6 * ``` * * @see {@link filter} * * @param {function(value: T, index: number): boolean} predicate A function that * evaluates each value emitted by the source Observable. If it returns `true`, * the value is emitted on the first Observable in the returned array, if * `false` the value is emitted on the second Observable in the array. The * `index` parameter is the number `i` for the i-th source emission that has * happened since the subscription, starting from the number `0`. * @param {any} [thisArg] An optional argument to determine the value of `this` * in the `predicate` function. * @return {[Observable<T>, Observable<T>]} An array with two Observables: one * with values that passed the predicate, and another with values that did not * pass the predicate. */ export declare function partition<T>(source: ObservableInput<T>, predicate: (value: T, index: number) => boolean, thisArg?: any): [Observable<T>, Observable<T>];
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
dom | Folder | 0755 |
|
|
ConnectableObservable.d.ts | File | 907 B | 0644 |
|
ConnectableObservable.js | File | 5.84 KB | 0644 |
|
ConnectableObservable.js.map | File | 3.78 KB | 0644 |
|
SubscribeOnObservable.d.ts | File | 985 B | 0644 |
|
SubscribeOnObservable.js | File | 2.36 KB | 0644 |
|
SubscribeOnObservable.js.map | File | 1.24 KB | 0644 |
|
bindCallback.d.ts | File | 7.31 KB | 0644 |
|
bindCallback.js | File | 3.91 KB | 0644 |
|
bindCallback.js.map | File | 2.76 KB | 0644 |
|
bindNodeCallback.d.ts | File | 7.31 KB | 0644 |
|
bindNodeCallback.js | File | 4.37 KB | 0644 |
|
bindNodeCallback.js.map | File | 3.16 KB | 0644 |
|
combineLatest.d.ts | File | 14.21 KB | 0644 |
|
combineLatest.js | File | 4.28 KB | 0644 |
|
combineLatest.js.map | File | 2.89 KB | 0644 |
|
concat.d.ts | File | 4.77 KB | 0644 |
|
concat.js | File | 436 B | 0644 |
|
concat.js.map | File | 294 B | 0644 |
|
defer.d.ts | File | 2.1 KB | 0644 |
|
defer.js | File | 646 B | 0644 |
|
defer.js.map | File | 554 B | 0644 |
|
empty.d.ts | File | 2 KB | 0644 |
|
empty.js | File | 556 B | 0644 |
|
empty.js.map | File | 522 B | 0644 |
|
forkJoin.d.ts | File | 3.08 KB | 0644 |
|
forkJoin.js | File | 2.65 KB | 0644 |
|
forkJoin.js.map | File | 2.38 KB | 0644 |
|
from.d.ts | File | 404 B | 0644 |
|
from.js | File | 587 B | 0644 |
|
from.js.map | File | 411 B | 0644 |
|
fromArray.d.ts | File | 187 B | 0644 |
|
fromArray.js | File | 551 B | 0644 |
|
fromArray.js.map | File | 364 B | 0644 |
|
fromEvent.d.ts | File | 2.09 KB | 0644 |
|
fromEvent.js | File | 2.7 KB | 0644 |
|
fromEvent.js.map | File | 2.45 KB | 0644 |
|
fromEventPattern.d.ts | File | 557 B | 0644 |
|
fromEventPattern.js | File | 1.28 KB | 0644 |
|
fromEventPattern.js.map | File | 1.03 KB | 0644 |
|
fromIterable.d.ts | File | 189 B | 0644 |
|
fromIterable.js | File | 663 B | 0644 |
|
fromIterable.js.map | File | 444 B | 0644 |
|
fromPromise.d.ts | File | 191 B | 0644 |
|
fromPromise.js | File | 575 B | 0644 |
|
fromPromise.js.map | File | 368 B | 0644 |
|
generate.d.ts | File | 8.94 KB | 0644 |
|
generate.js | File | 3.64 KB | 0644 |
|
generate.js.map | File | 2.83 KB | 0644 |
|
iif.d.ts | File | 3.08 KB | 0644 |
|
iif.js | File | 466 B | 0644 |
|
iif.js.map | File | 367 B | 0644 |
|
interval.d.ts | File | 1.7 KB | 0644 |
|
interval.js | File | 1.04 KB | 0644 |
|
interval.js.map | File | 899 B | 0644 |
|
merge.d.ts | File | 6.45 KB | 0644 |
|
merge.js | File | 1.13 KB | 0644 |
|
merge.js.map | File | 938 B | 0644 |
|
never.d.ts | File | 1.12 KB | 0644 |
|
never.js | File | 321 B | 0644 |
|
never.js.map | File | 248 B | 0644 |
|
of.d.ts | File | 3.22 KB | 0644 |
|
of.js | File | 649 B | 0644 |
|
of.js.map | File | 478 B | 0644 |
|
onErrorResumeNext.d.ts | File | 1.03 KB | 0644 |
|
onErrorResumeNext.js | File | 1.08 KB | 0644 |
|
onErrorResumeNext.js.map | File | 843 B | 0644 |
|
pairs.d.ts | File | 1.97 KB | 0644 |
|
pairs.js | File | 1.59 KB | 0644 |
|
pairs.js.map | File | 1.5 KB | 0644 |
|
partition.d.ts | File | 2.28 KB | 0644 |
|
partition.js | File | 624 B | 0644 |
|
partition.js.map | File | 456 B | 0644 |
|
race.d.ts | File | 2.53 KB | 0644 |
|
race.js | File | 3.3 KB | 0644 |
|
race.js.map | File | 2.06 KB | 0644 |
|
range.d.ts | File | 1.44 KB | 0644 |
|
range.js | File | 1.39 KB | 0644 |
|
range.js.map | File | 1.2 KB | 0644 |
|
throwError.d.ts | File | 1.81 KB | 0644 |
|
throwError.js | File | 645 B | 0644 |
|
throwError.js.map | File | 583 B | 0644 |
|
timer.d.ts | File | 2.16 KB | 0644 |
|
timer.js | File | 1.39 KB | 0644 |
|
timer.js.map | File | 1.2 KB | 0644 |
|
using.d.ts | File | 2.32 KB | 0644 |
|
using.js | File | 1.01 KB | 0644 |
|
using.js.map | File | 849 B | 0644 |
|
zip.d.ts | File | 5.54 KB | 0644 |
|
zip.js | File | 7.82 KB | 0644 |
|
zip.js.map | File | 5.84 KB | 0644 |
|