• Produces the set intersection of two async-iterable sequences.

    Type Parameters

    • TSource

      The type of the elements of the input sequences.

    Parameters

    • second: AsyncIterable<TSource>

      An async-iterable sequence whose distinct elements that also appear in the first sequence will be returned.

    • Optional comparer: ((x, y) => boolean | Promise<boolean>) = comparerAsync

      An equality comparer to compare values.

        • (x, y): boolean | Promise<boolean>
        • Parameters

          • x: TSource
          • y: TSource

          Returns boolean | Promise<boolean>

    Returns MonoTypeOperatorAsyncFunction<TSource>

    An operator that returns a sequence that contains the elements that form the set intersection of two sequences.

Generated using TypeDoc