3 instantiations of ConcatNIterator
System.Linq (3)
System\Linq\Concat.cs (3)
75return new ConcatNIterator<TSource>(this, next, 2, hasOnlyCollections); 154private protected override Iterator<TSource> Clone() => new ConcatNIterator<TSource>(_tail, _head, _headIndex, _hasOnlyCollections); 167return new ConcatNIterator<TSource>(this, next, _headIndex + 1, hasOnlyCollections);
7 references to ConcatNIterator
System.Linq (7)
System\Linq\Concat.cs (4)
131/// Initializes a new instance of the <see cref="ConcatNIterator{TSource}"/> class. 152private ConcatNIterator<TSource>? PreviousN => _tail as ConcatNIterator<TSource>; 179ConcatNIterator<TSource>? node, previousN = this;
System\Linq\Concat.SpeedOpt.cs (3)
163ConcatNIterator<TSource>? node, previousN = this; 238ConcatNIterator<TSource>? node, previousN = this; 329ConcatNIterator<TSource>? node, previousN = this;