Open
Description
For some operators, it would be very convenient to have overloads that take params
arrays as arguments.
Union(this IEnumerable<T> source, T item, params T[] items)
Except(this IEnumerable<T> source, T item, params T[] items)
Concat(this IEnumerable<T> source, T item, params T[] items)
Intersect(this IEnumerable<T> source, T item, params T[] items)
Intersect seems less useful than the others, but it might as well be included for completeness if the other three are.