UNPKG

@reactivex/ix-esnext-esm

Version:

The Interactive Extensions for JavaScript

11 lines (10 loc) 577 B
import { IterableX } from '../iterablex'; import { MonoTypeOperatorFunction } from '../../interfaces'; export declare class IntersectIterable<TSource> extends IterableX<TSource> { private _first; private _second; private _comparer; constructor(first: Iterable<TSource>, second: Iterable<TSource>, comparer: (x: TSource, y: TSource) => boolean); [Symbol.iterator](): Generator<TSource, void, unknown>; } export declare function intersect<TSource>(second: Iterable<TSource>, comparer?: (x: TSource, y: TSource) => boolean): MonoTypeOperatorFunction<TSource>;