4 references to Add
System.Linq.AsyncEnumerable (4)
System\Linq\Append.cs (4)
137
return new AppendPrependNAsyncIterator<TSource>(_source, null, new SingleLinkedNode<TSource>(_item).
Add
(item), prependCount: 0, appendCount: 2);
153
return new AppendPrependNAsyncIterator<TSource>(_source, new SingleLinkedNode<TSource>(_item).
Add
(item), null, prependCount: 2, appendCount: 0);
240
var appended = _appended is not null ? _appended.
Add
(item) : new SingleLinkedNode<TSource>(item);
246
var prepended = _prepended is not null ? _prepended.
Add
(item) : new SingleLinkedNode<TSource>(item);