예제 #1
0
 public static IAsyncEnumerable <TSource> Intersect <TSource>(this IAsyncEnumerable <TSource> first, IAsyncEnumerable <TSource> second, IEqualityComparer <TSource> comparer) =>
 LinqEnumerable.Intersect(first, second, comparer);
예제 #2
0
 public static IAsyncEnumerable <TSource> Intersect <TSource>(this IAsyncEnumerable <TSource> first, IAsyncEnumerable <TSource> second) =>
 LinqEnumerable.Intersect(first, second);