• Produces the set union of two sequences by using the given equality comparer.

    Type Parameters

    • TSource

      The type of the elements of the input sequences.

    Parameters

    • right: Iterable<TSource>

      An iterable sequence whose distinct elements form the second set for the union.

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

      The equality comparer to compare values.

        • (x, y): boolean
        • Parameters

          • x: TSource
          • y: TSource

          Returns boolean

    Returns MonoTypeOperatorFunction<TSource>

    An iterable sequence that contains the elements from both input sequences, excluding duplicates.

Generated using TypeDoc