AsyncEnumerableExtensions Class

Provides extension methods for IAsyncEnumerableT for use with the BinarySize type.

Definition

Namespace: Ookii
Assembly: Ookii.BinarySize.Async (in Ookii.BinarySize.Async.dll) Version: 1.0.0+877c9712c6435bf9adfdb0683d7a434c5604a8f2
C#
public static class AsyncEnumerableExtensions
Inheritance
Object    AsyncEnumerableExtensions

Methods

AverageAsync(IAsyncEnumerableBinarySize, CancellationToken) Asynchronously computes the average of a sequence of BinarySize values.
AverageAsync(IAsyncEnumerableNullableBinarySize, CancellationToken) Asynchronously computes the average of a sequence of nullable BinarySize values.
AverageAsyncTSource(IAsyncEnumerableTSource, FuncTSource, BinarySize, CancellationToken) Asynchronously computes the average of a sequence of BinarySize values that are obtained by invoking a transform function on each element of the input sequence.
AverageAsyncTSource(IAsyncEnumerableTSource, FuncTSource, NullableBinarySize, CancellationToken) Asynchronously computes the average of a sequence of nullable BinarySize values that are obtained by invoking a transform function on each element of the input sequence.
SumAsync(IAsyncEnumerableBinarySize, CancellationToken) Asynchronously computes the sum of a sequence of BinarySize values.
SumAsync(IAsyncEnumerableNullableBinarySize, CancellationToken) Asynchronously computes the sum of a sequence of nullable BinarySize values.
SumAsyncTSource(IAsyncEnumerableTSource, FuncTSource, BinarySize, CancellationToken) Asynchronously computes the sum of a sequence of BinarySize values that are obtained by invoking a transform function on each element of the input sequence..
SumAsyncTSource(IAsyncEnumerableTSource, FuncTSource, NullableBinarySize, CancellationToken) Asynchronously computes the sum of a sequence of nullable BinarySize values that are obtained by invoking a transform function on each element of the input sequence.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also