Dasync.Collections.IAsyncEnumerator<T>
Supports a simple asynchronous iteration over a collection of typed items
namespace Dasync.Collections
{
public interface IAsyncEnumerator<out T> : IAsyncEnumerator, IDisposable, IAsyncDisposable
{
new T Current { get; }
}
}