1 write to _appended
System.Linq.AsyncEnumerable (1)
System\Linq\Append.cs (1)
183
_appended
= appended;
6 references to _appended
System.Linq.AsyncEnumerable (6)
System\Linq\Append.cs (6)
188
private protected override AsyncIterator<TSource> Clone() => new AppendPrependNAsyncIterator<TSource>(_source, _prepended,
_appended
, _prependCount, _appendCount);
215
if (
_appended
is null)
221
_appendedArray =
_appended
.ToArray(_appendCount);
240
var appended =
_appended
is not null ?
_appended
.Add(item) : new SingleLinkedNode<TSource>(item);
247
return new AppendPrependNAsyncIterator<TSource>(_source, prepended,
_appended
, _prependCount + 1, _appendCount);