3 instantiations of Concat2Iterator
System.Linq (3)
System\Linq\Concat.cs (3)
35: new Concat2Iterator<TSource>(first, second); 68private protected override Iterator<TSource> Clone() => new Concat2Iterator<TSource>(_first, _second); 163return new Concat2Iterator<TSource>(this, next);
6 references to Concat2Iterator
System.Linq (6)
System\Linq\Concat.cs (2)
55/// Initializes a new instance of the <see cref="Concat2Iterator{TSource}"/> class. 191Debug.Assert(node._tail is Concat2Iterator<TSource>);
System\Linq\Concat.SpeedOpt.cs (4)
183Debug.Assert(node._tail is Concat2Iterator<TSource>); 255var previous2 = (Concat2Iterator<TSource>)node._tail; 342Debug.Assert(node._tail is Concat2Iterator<TSource>);