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