• Produces the set difference of two iterable sequences by using the specified equality comparer to compare values.

    Type Parameters

    • TSource

      The type of the elements of the input sequences.

    Parameters

    • second: Iterable<TSource>

      An iterable sequence whose elements that also occur in the operator sequence will cause those elements to be removed from the returned sequence.

    • 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 set difference of the elements of two sequences.

Generated using TypeDoc