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