UNPKG

@reactivex/ix-es5-esm

Version:

The Interactive Extensions for JavaScript

10 lines (9 loc) 547 B
import { OptionalFindOptions } from './findoptions.js'; /** * Returns the first element of an iterable sequence that matches the predicate if provided, or undefined if no such element exists. * * @template T The type of the elements in the source sequence. * @param {Iterable<T>} source Source async-enumerable sequence. * @returns {(S | undefined)} The first element in the iterable sequence, or undefined if no such element exists. */ export declare function first<T>(source: Iterable<T>, options?: OptionalFindOptions<T>): T | undefined;