3 instantiations of ConcatNIterator
System.Linq (3)
System\Linq\Concat.cs (3)
75
return new
ConcatNIterator
<TSource>(this, next, 2, hasOnlyCollections);
154
private protected override Iterator<TSource> Clone() => new
ConcatNIterator
<TSource>(_tail, _head, _headIndex, _hasOnlyCollections);
167
return 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.
152
private
ConcatNIterator
<TSource>? PreviousN => _tail as
ConcatNIterator
<TSource>;
179
ConcatNIterator
<TSource>? node, previousN = this;
System\Linq\Concat.SpeedOpt.cs (3)
163
ConcatNIterator
<TSource>? node, previousN = this;
238
ConcatNIterator
<TSource>? node, previousN = this;
329
ConcatNIterator
<TSource>? node, previousN = this;