8 references to SingleLinkedNode
System.Linq.AsyncEnumerable (8)
System\Linq\Append.cs (8)
137return new AppendPrependNAsyncIterator<TSource>(_source, null, new SingleLinkedNode<TSource>(_item).Add(item), prependCount: 0, appendCount: 2);
141return new AppendPrependNAsyncIterator<TSource>(_source, new SingleLinkedNode<TSource>(_item), new SingleLinkedNode<TSource>(item), prependCount: 1, appendCount: 1);
149return new AppendPrependNAsyncIterator<TSource>(_source, new SingleLinkedNode<TSource>(item), new SingleLinkedNode<TSource>(_item), prependCount: 1, appendCount: 1);
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);