UNPKG

1.93 kBTypeScriptView Raw
1import { OperatorFunction } from '../types';
2/**
3 * Emits the single value at the specified `index` in a sequence of emissions
4 * from the source Observable.
5 *
6 * <span class="informal">Emits only the i-th value, then completes.</span>
7 *
8 * ![](elementAt.png)
9 *
10 * `elementAt` returns an Observable that emits the item at the specified
11 * `index` in the source Observable, or a default value if that `index` is out
12 * of range and the `default` argument is provided. If the `default` argument is
13 * not given and the `index` is out of range, the output Observable will emit an
14 * `ArgumentOutOfRangeError` error.
15 *
16 * ## Example
17 * Emit only the third click event
18 * ```ts
19 * import { fromEvent } from 'rxjs';
20 * import { elementAt } from 'rxjs/operators';
21 *
22 * const clicks = fromEvent(document, 'click');
23 * const result = clicks.pipe(elementAt(2));
24 * result.subscribe(x => console.log(x));
25 *
26 * // Results in:
27 * // click 1 = nothing
28 * // click 2 = nothing
29 * // click 3 = MouseEvent object logged to console
30 * ```
31 *
32 * @see {@link first}
33 * @see {@link last}
34 * @see {@link skip}
35 * @see {@link single}
36 * @see {@link take}
37 *
38 * @throws {ArgumentOutOfRangeError} When using `elementAt(i)`, it delivers an
39 * ArgumentOutOfRangeError to the Observer's `error` callback if `i < 0` or the
40 * Observable has completed before emitting the i-th `next` notification.
41 *
42 * @param {number} index Is the number `i` for the i-th source emission that has
43 * happened since the subscription, starting from the number `0`.
44 * @param {T} [defaultValue] The default value returned for missing indices.
45 * @return A function that returns an Observable that emits a single item, if
46 * it is found. Otherwise, it will emit the default value if given. If not, it
47 * emits an error.
48 */
49export declare function elementAt<T, D = T>(index: number, defaultValue?: D): OperatorFunction<T, T | D>;
50//# sourceMappingURL=elementAt.d.ts.map
\No newline at end of file