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);
8 references to ConcatNIterator
System.Linq (8)
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 (4)
167ConcatNIterator<TSource>? node, previousN = this; 242ConcatNIterator<TSource>? node, previousN = this; 333ConcatNIterator<TSource>? node, previousN = this; 352ConcatNIterator<TSource>? node, previousN = this;