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)
188private protected override AsyncIterator<TSource> Clone() => new AppendPrependNAsyncIterator<TSource>(_source, _prepended, _appended, _prependCount, _appendCount); 215if (_appended is null) 221_appendedArray = _appended.ToArray(_appendCount); 240var appended = _appended is not null ? _appended.Add(item) : new SingleLinkedNode<TSource>(item); 247return new AppendPrependNAsyncIterator<TSource>(_source, prepended, _appended, _prependCount + 1, _appendCount);