Dasync.Collections.AsyncEnumerableAdapterExtensions
Extension methods for IAsyncEnumerable<T> for backward compatibility with version 1 of this libraray.
Not recommended to use.
namespace Dasync.Collections
{
public static class AsyncEnumerableAdapterExtensions
{
public static IEnumerable ToEnumerable(this IAsyncEnumerable asyncEnumerable);
public static IEnumerator ToEnumerator(this IAsyncEnumerator asyncEnumerator);
public static IEnumerator GetEnumerator(this IAsyncEnumerable asyncEnumerable);
public static bool MoveNext(this IAsyncEnumerator asyncEnumerator);
public static IEnumerable<T> ToEnumerable<T>(this IAsyncEnumerable<T> asyncEnumerable);
public static IEnumerator<T> ToEnumerator<T>(this IAsyncEnumerator<T> asyncEnumerator);
public static IEnumerator<T> GetEnumerator<T>(this IAsyncEnumerable<T> asyncEnumerable);
}
}