123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- // Licensed to the .NET Foundation under one or more agreements.
- // The .NET Foundation licenses this file to you under the MIT License.
- // See the LICENSE file in the project root for more information.
- using System.Collections.Generic;
- using System.Threading;
- using System.Threading.Tasks;
- namespace System.Linq
- {
- public static partial class AsyncEnumerable
- {
- #if HAS_VALUETUPLE
- public static IAsyncEnumerable<(TFirst First, TSecond Second)> Zip<TFirst, TSecond>(this IAsyncEnumerable<TFirst> first, IAsyncEnumerable<TSecond> second)
- {
- if (first == null)
- throw Error.ArgumentNull(nameof(first));
- if (second == null)
- throw Error.ArgumentNull(nameof(second));
- #if HAS_ASYNC_ENUMERABLE_CANCELLATION
- return Core();
- async IAsyncEnumerable<(TFirst, TSecond)> Core([System.Runtime.CompilerServices.EnumeratorCancellation]CancellationToken cancellationToken = default)
- #else
- return Create(Core);
- async IAsyncEnumerator<(TFirst, TSecond)> Core(CancellationToken cancellationToken)
- #endif
- {
- await using var e1 = first.GetConfiguredAsyncEnumerator(cancellationToken, false);
- await using var e2 = second.GetConfiguredAsyncEnumerator(cancellationToken, false);
-
- while (await e1.MoveNextAsync() && await e2.MoveNextAsync())
- {
- yield return (e1.Current, e2.Current);
- }
- }
- }
- #endif
- /// <summary>
- /// Merges two async-enumerable sequences into one async-enumerable sequence by combining their elements in a pairwise fashion.
- /// </summary>
- /// <typeparam name="TFirst">The type of the elements in the first source sequence.</typeparam>
- /// <typeparam name="TSecond">The type of the elements in the second source sequence.</typeparam>
- /// <typeparam name="TResult">The type of the elements in the result sequence, returned by the selector function.</typeparam>
- /// <param name="first">First async-enumerable source.</param>
- /// <param name="second">Second async-enumerable source.</param>
- /// <param name="selector">Function to invoke for each consecutive pair of elements from the first and second source.</param>
- /// <returns>An async-enumerable sequence containing the result of pairwise combining the elements of the first and second source using the specified result selector function.</returns>
- /// <exception cref="ArgumentNullException"><paramref name="first"/> or <paramref name="second"/> or <paramref name="selector"/> is null.</exception>
- public static IAsyncEnumerable<TResult> Zip<TFirst, TSecond, TResult>(this IAsyncEnumerable<TFirst> first, IAsyncEnumerable<TSecond> second, Func<TFirst, TSecond, TResult> selector)
- {
- if (first == null)
- throw Error.ArgumentNull(nameof(first));
- if (second == null)
- throw Error.ArgumentNull(nameof(second));
- if (selector == null)
- throw Error.ArgumentNull(nameof(selector));
- #if HAS_ASYNC_ENUMERABLE_CANCELLATION
- return Core();
- async IAsyncEnumerable<TResult> Core([System.Runtime.CompilerServices.EnumeratorCancellation]CancellationToken cancellationToken = default)
- #else
- return Create(Core);
- async IAsyncEnumerator<TResult> Core(CancellationToken cancellationToken)
- #endif
- {
- await using var e1 = first.GetConfiguredAsyncEnumerator(cancellationToken, false);
- await using var e2 = second.GetConfiguredAsyncEnumerator(cancellationToken, false);
- while (await e1.MoveNextAsync() && await e2.MoveNextAsync())
- {
- yield return selector(e1.Current, e2.Current);
- }
- }
- }
- internal static IAsyncEnumerable<TResult> ZipAwaitCore<TFirst, TSecond, TResult>(this IAsyncEnumerable<TFirst> first, IAsyncEnumerable<TSecond> second, Func<TFirst, TSecond, ValueTask<TResult>> selector)
- {
- if (first == null)
- throw Error.ArgumentNull(nameof(first));
- if (second == null)
- throw Error.ArgumentNull(nameof(second));
- if (selector == null)
- throw Error.ArgumentNull(nameof(selector));
- #if HAS_ASYNC_ENUMERABLE_CANCELLATION
- return Core();
- async IAsyncEnumerable<TResult> Core([System.Runtime.CompilerServices.EnumeratorCancellation]CancellationToken cancellationToken = default)
- #else
- return Create(Core);
- async IAsyncEnumerator<TResult> Core(CancellationToken cancellationToken)
- #endif
- {
- await using var e1 = first.GetConfiguredAsyncEnumerator(cancellationToken, false);
- await using var e2 = second.GetConfiguredAsyncEnumerator(cancellationToken, false);
- while (await e1.MoveNextAsync() && await e2.MoveNextAsync())
- {
- yield return await selector(e1.Current, e2.Current).ConfigureAwait(false);
- }
- }
- }
- #if !NO_DEEP_CANCELLATION
- internal static IAsyncEnumerable<TResult> ZipAwaitWithCancellationCore<TFirst, TSecond, TResult>(this IAsyncEnumerable<TFirst> first, IAsyncEnumerable<TSecond> second, Func<TFirst, TSecond, CancellationToken, ValueTask<TResult>> selector)
- {
- if (first == null)
- throw Error.ArgumentNull(nameof(first));
- if (second == null)
- throw Error.ArgumentNull(nameof(second));
- if (selector == null)
- throw Error.ArgumentNull(nameof(selector));
- return Create(Core);
- async IAsyncEnumerator<TResult> Core(CancellationToken cancellationToken)
- {
- await using var e1 = first.GetConfiguredAsyncEnumerator(cancellationToken, false);
- await using var e2 = second.GetConfiguredAsyncEnumerator(cancellationToken, false);
- while (await e1.MoveNextAsync() && await e2.MoveNextAsync())
- {
- yield return await selector(e1.Current, e2.Current, cancellationToken).ConfigureAwait(false);
- }
- }
- }
- #endif
- }
- }
|