2 types derived from AppendPrependAsyncIterator
System.Linq.AsyncEnumerable (2)
System\Linq\Append.cs (2)
83private sealed class AppendPrepend1AsyncIterator<TSource> : AppendPrependAsyncIterator<TSource> 162private sealed class AppendPrependNAsyncIterator<TSource> : AppendPrependAsyncIterator<TSource>
8 references to AppendPrependAsyncIterator
System.Linq.AsyncEnumerable (8)
System\Linq\Append.cs (7)
24return source is AppendPrependAsyncIterator<TSource> appendable 50public abstract AppendPrependAsyncIterator<TSource> Append(TSource item); 52public abstract AppendPrependAsyncIterator<TSource> Prepend(TSource item); 133public override AppendPrependAsyncIterator<TSource> Append(TSource item) 145public override AppendPrependAsyncIterator<TSource> Prepend(TSource item) 238public override AppendPrependAsyncIterator<TSource> Append(TSource item) 244public override AppendPrependAsyncIterator<TSource> Prepend(TSource item)
System\Linq\Prepend.cs (1)
22return source is AppendPrependAsyncIterator<TSource> appendable