Dasync.Collections.AsyncEnumerable
Base abstract class that implements IAsyncEnumerable.
Use concrete implementation AsyncEnumerable<T> or AsyncEnumerableWithState<T, U>.
namespace Dasync.Collections
{
public abstract class AsyncEnumerable : IAsyncEnumerable
{
public static IAsyncEnumerable<T> Empty<T>();
protected AsyncEnumerable();
}
}