• Produces the set intersection of two iterable sequences.

    Type Parameters

    • TSource

      The type of the elements of the input sequences.

    Parameters

    • second: Iterable<TSource>

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

    • Optional comparer: ((x, y) => boolean) = defaultComparer

      An equality comparer to compare values.

        • (x, y): boolean
        • Parameters

          • x: TSource
          • y: TSource

          Returns boolean

    Returns MonoTypeOperatorFunction<TSource>

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

Generated using TypeDoc