import { IterableX } from '../iterablex.js'; import { MonoTypeOperatorFunction } from '../../interfaces.js'; /** @ignore */ export declare class ExceptIterable extends IterableX { private _first; private _second; private _comparer; constructor(first: Iterable, second: Iterable, comparer: (x: TSource, y: TSource) => boolean); [Symbol.iterator](): Generator; } /** * Produces the set difference of two iterable sequences by using the specified equality comparer to compare values. * * @template TSource The type of the elements of the input sequences. * @param {Iterable} second An iterable sequence whose elements that also occur in the * operator sequence will cause those elements to be removed from the returned sequence. * @param {((x: TSource, y: TSource) => boolean} [comparer=defaultComparer] An equality comparer to compare values * @returns {MonoTypeOperatorFunction} An operator that returns a sequence that contains the set * difference of the elements of two sequences. */ export declare function except(second: Iterable, comparer?: (x: TSource, y: TSource) => boolean): MonoTypeOperatorFunction;