2 types derived from ConcatAsyncIterator
System.Linq.AsyncEnumerable (2)
System\Linq\Concat.cs (2)
44private sealed class Concat2AsyncIterator<TSource> : ConcatAsyncIterator<TSource> 102private sealed class ConcatNAsyncIterator<TSource> : ConcatAsyncIterator<TSource>
6 references to ConcatAsyncIterator
System.Linq.AsyncEnumerable (6)
System\Linq\Concat.cs (6)
35return first is ConcatAsyncIterator<TSource> firstConcat 72internal override ConcatAsyncIterator<TSource> Concat(IAsyncEnumerable<TSource> next) 107private readonly ConcatAsyncIterator<TSource> _tail; 125internal ConcatNAsyncIterator(ConcatAsyncIterator<TSource> tail, IAsyncEnumerable<TSource> head, int headIndex) 140internal override ConcatAsyncIterator<TSource> Concat(IAsyncEnumerable<TSource> next) 212internal abstract ConcatAsyncIterator<TSource> Concat(IAsyncEnumerable<TSource> next);