1 write to _prepended
System.Linq.AsyncEnumerable (1)
System\Linq\Append.cs (1)
182
_prepended
= prepended;
5 references to _prepended
System.Linq.AsyncEnumerable (5)
System\Linq\Append.cs (5)
188
private protected override AsyncIterator<TSource> Clone() => new AppendPrependNAsyncIterator<TSource>(_source,
_prepended
, _appended, _prependCount, _appendCount);
195
_node =
_prepended
;
241
return new AppendPrependNAsyncIterator<TSource>(_source,
_prepended
, appended, _prependCount, _appendCount + 1);
246
var prepended =
_prepended
is not null ?
_prepended
.Add(item) : new SingleLinkedNode<TSource>(item);