|
@@ -12,375 +12,6 @@ namespace System.Linq
|
|
|
{
|
|
|
public static partial class AsyncEnumerable
|
|
|
{
|
|
|
- public static Task<double> Average(this IAsyncEnumerable<int> source)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
- return Average(source, CancellationToken.None);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<double?> Average(this IAsyncEnumerable<int?> source)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
- return Average(source, CancellationToken.None);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<double> Average(this IAsyncEnumerable<long> source)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
-
|
|
|
- return Average(source, CancellationToken.None);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<double?> Average(this IAsyncEnumerable<long?> source)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
-
|
|
|
- return Average(source, CancellationToken.None);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<double> Average(this IAsyncEnumerable<double> source)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
-
|
|
|
- return Average(source, CancellationToken.None);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<double?> Average(this IAsyncEnumerable<double?> source)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
-
|
|
|
- return Average(source, CancellationToken.None);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<float> Average(this IAsyncEnumerable<float> source)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
-
|
|
|
- return Average(source, CancellationToken.None);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<float?> Average(this IAsyncEnumerable<float?> source)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
-
|
|
|
- return Average(source, CancellationToken.None);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<decimal> Average(this IAsyncEnumerable<decimal> source)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
-
|
|
|
- return Average(source, CancellationToken.None);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<decimal?> Average(this IAsyncEnumerable<decimal?> source)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
-
|
|
|
- return Average(source, CancellationToken.None);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<double?> Average<TSource>(this IAsyncEnumerable<TSource> source, Func<TSource, int?> selector)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
- if (selector == null)
|
|
|
- throw new ArgumentNullException(nameof(selector));
|
|
|
-
|
|
|
- return Average(source, selector, CancellationToken.None);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<double> Average<TSource>(this IAsyncEnumerable<TSource> source, Func<TSource, int> selector)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
- if (selector == null)
|
|
|
- throw new ArgumentNullException(nameof(selector));
|
|
|
-
|
|
|
- return Average(source, selector, CancellationToken.None);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<double> Average<TSource>(this IAsyncEnumerable<TSource> source, Func<TSource, long> selector)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
- if (selector == null)
|
|
|
- throw new ArgumentNullException(nameof(selector));
|
|
|
-
|
|
|
- return Average(source, selector, CancellationToken.None);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<double?> Average<TSource>(this IAsyncEnumerable<TSource> source, Func<TSource, long?> selector)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
- if (selector == null)
|
|
|
- throw new ArgumentNullException(nameof(selector));
|
|
|
-
|
|
|
- return Average(source, selector, CancellationToken.None);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<double> Average<TSource>(this IAsyncEnumerable<TSource> source, Func<TSource, double> selector)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
- if (selector == null)
|
|
|
- throw new ArgumentNullException(nameof(selector));
|
|
|
-
|
|
|
- return Average(source, selector, CancellationToken.None);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<double?> Average<TSource>(this IAsyncEnumerable<TSource> source, Func<TSource, double?> selector)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
- if (selector == null)
|
|
|
- throw new ArgumentNullException(nameof(selector));
|
|
|
-
|
|
|
- return Average(source, selector, CancellationToken.None);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<float> Average<TSource>(this IAsyncEnumerable<TSource> source, Func<TSource, float> selector)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
- if (selector == null)
|
|
|
- throw new ArgumentNullException(nameof(selector));
|
|
|
-
|
|
|
- return Average(source, selector, CancellationToken.None);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<float?> Average<TSource>(this IAsyncEnumerable<TSource> source, Func<TSource, float?> selector)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
- if (selector == null)
|
|
|
- throw new ArgumentNullException(nameof(selector));
|
|
|
-
|
|
|
- return Average(source, selector, CancellationToken.None);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<decimal> Average<TSource>(this IAsyncEnumerable<TSource> source, Func<TSource, decimal> selector)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
- if (selector == null)
|
|
|
- throw new ArgumentNullException(nameof(selector));
|
|
|
-
|
|
|
- return Average(source, selector, CancellationToken.None);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<decimal?> Average<TSource>(this IAsyncEnumerable<TSource> source, Func<TSource, decimal?> selector)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
- if (selector == null)
|
|
|
- throw new ArgumentNullException(nameof(selector));
|
|
|
-
|
|
|
- return Average(source, selector, CancellationToken.None);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- public static Task<double> Average(this IAsyncEnumerable<int> source, CancellationToken cancellationToken)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
-
|
|
|
- return Average_(source, cancellationToken);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<double?> Average(this IAsyncEnumerable<int?> source, CancellationToken cancellationToken)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
-
|
|
|
- return Average_(source, cancellationToken);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<double> Average(this IAsyncEnumerable<long> source, CancellationToken cancellationToken)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
-
|
|
|
- return Average_(source, cancellationToken);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<double?> Average(this IAsyncEnumerable<long?> source, CancellationToken cancellationToken)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
-
|
|
|
- return Average_(source, cancellationToken);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<double> Average(this IAsyncEnumerable<double> source, CancellationToken cancellationToken)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
-
|
|
|
- return Average_(source, cancellationToken);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<double?> Average(this IAsyncEnumerable<double?> source, CancellationToken cancellationToken)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
-
|
|
|
- return Average_(source, cancellationToken);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<float> Average(this IAsyncEnumerable<float> source, CancellationToken cancellationToken)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
-
|
|
|
- return Average_(source, cancellationToken);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<float?> Average(this IAsyncEnumerable<float?> source, CancellationToken cancellationToken)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
-
|
|
|
- return Average_(source, cancellationToken);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<decimal> Average(this IAsyncEnumerable<decimal> source, CancellationToken cancellationToken)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
-
|
|
|
- return Average_(source, cancellationToken);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<decimal?> Average(this IAsyncEnumerable<decimal?> source, CancellationToken cancellationToken)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
-
|
|
|
- return Average_(source, cancellationToken);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<double?> Average<TSource>(this IAsyncEnumerable<TSource> source, Func<TSource, int?> selector, CancellationToken cancellationToken)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
- if (selector == null)
|
|
|
- throw new ArgumentNullException(nameof(selector));
|
|
|
-
|
|
|
- return source.Select(selector)
|
|
|
- .Average(cancellationToken);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<double> Average<TSource>(this IAsyncEnumerable<TSource> source, Func<TSource, int> selector, CancellationToken cancellationToken)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
- if (selector == null)
|
|
|
- throw new ArgumentNullException(nameof(selector));
|
|
|
-
|
|
|
- return source.Select(selector)
|
|
|
- .Average(cancellationToken);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<double> Average<TSource>(this IAsyncEnumerable<TSource> source, Func<TSource, long> selector, CancellationToken cancellationToken)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
- if (selector == null)
|
|
|
- throw new ArgumentNullException(nameof(selector));
|
|
|
-
|
|
|
- return source.Select(selector)
|
|
|
- .Average(cancellationToken);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<double?> Average<TSource>(this IAsyncEnumerable<TSource> source, Func<TSource, long?> selector, CancellationToken cancellationToken)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
- if (selector == null)
|
|
|
- throw new ArgumentNullException(nameof(selector));
|
|
|
-
|
|
|
- return source.Select(selector)
|
|
|
- .Average(cancellationToken);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<double> Average<TSource>(this IAsyncEnumerable<TSource> source, Func<TSource, double> selector, CancellationToken cancellationToken)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
- if (selector == null)
|
|
|
- throw new ArgumentNullException(nameof(selector));
|
|
|
-
|
|
|
- return source.Select(selector)
|
|
|
- .Average(cancellationToken);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<double?> Average<TSource>(this IAsyncEnumerable<TSource> source, Func<TSource, double?> selector, CancellationToken cancellationToken)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
- if (selector == null)
|
|
|
- throw new ArgumentNullException(nameof(selector));
|
|
|
-
|
|
|
- return source.Select(selector)
|
|
|
- .Average(cancellationToken);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<float> Average<TSource>(this IAsyncEnumerable<TSource> source, Func<TSource, float> selector, CancellationToken cancellationToken)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
- if (selector == null)
|
|
|
- throw new ArgumentNullException(nameof(selector));
|
|
|
-
|
|
|
- return source.Select(selector)
|
|
|
- .Average(cancellationToken);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<float?> Average<TSource>(this IAsyncEnumerable<TSource> source, Func<TSource, float?> selector, CancellationToken cancellationToken)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
- if (selector == null)
|
|
|
- throw new ArgumentNullException(nameof(selector));
|
|
|
-
|
|
|
- return source.Select(selector)
|
|
|
- .Average(cancellationToken);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<decimal> Average<TSource>(this IAsyncEnumerable<TSource> source, Func<TSource, decimal> selector, CancellationToken cancellationToken)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
- if (selector == null)
|
|
|
- throw new ArgumentNullException(nameof(selector));
|
|
|
-
|
|
|
- return source.Select(selector)
|
|
|
- .Average(cancellationToken);
|
|
|
- }
|
|
|
-
|
|
|
- public static Task<decimal?> Average<TSource>(this IAsyncEnumerable<TSource> source, Func<TSource, decimal?> selector, CancellationToken cancellationToken)
|
|
|
- {
|
|
|
- if (source == null)
|
|
|
- throw new ArgumentNullException(nameof(source));
|
|
|
- if (selector == null)
|
|
|
- throw new ArgumentNullException(nameof(selector));
|
|
|
-
|
|
|
- return source.Select(selector)
|
|
|
- .Average(cancellationToken);
|
|
|
- }
|
|
|
-
|
|
|
private static async Task<double> Average_(this IAsyncEnumerable<int> source, CancellationToken cancellationToken)
|
|
|
{
|
|
|
var e = source.GetAsyncEnumerator();
|