4 types derived from ConcatIterator
System.Linq (4)
System\Linq\Concat.cs (2)
42private sealed partial class Concat2Iterator<TSource> : ConcatIterator<TSource> 103private sealed partial class ConcatNIterator<TSource> : ConcatIterator<TSource>
System\Linq\Concat.SpeedOpt.cs (2)
11private sealed partial class Concat2Iterator<TSource> : ConcatIterator<TSource> 153private sealed partial class ConcatNIterator<TSource> : ConcatIterator<TSource>
6 references to ConcatIterator
System.Linq (6)
System\Linq\Concat.cs (6)
33return first is ConcatIterator<TSource> firstConcat 70internal override ConcatIterator<TSource> Concat(IEnumerable<TSource> next) 108private readonly ConcatIterator<TSource> _tail; 140internal ConcatNIterator(ConcatIterator<TSource> tail, IEnumerable<TSource> head, int headIndex, bool hasOnlyCollections) 156internal override ConcatIterator<TSource> Concat(IEnumerable<TSource> next) 229internal abstract ConcatIterator<TSource> Concat(IEnumerable<TSource> next);