97 references to IsKnownEmpty
System.Linq.AsyncEnumerable (97)
System\Linq\AggregateBy.cs (4)
46source.IsKnownEmpty() ? Empty<KeyValuePair<TKey, TAccumulate>>() : 123source.IsKnownEmpty() ? Empty<KeyValuePair<TKey, TAccumulate>>() : 196source.IsKnownEmpty() ? Empty<KeyValuePair<TKey, TAccumulate>>() : 274source.IsKnownEmpty() ? Empty<KeyValuePair<TKey, TAccumulate>>() :
System\Linq\Cast.cs (1)
30source.IsKnownEmpty() ? Empty<TResult>() :
System\Linq\Chunk.cs (1)
34source.IsKnownEmpty() ? Empty<TSource[]>() :
System\Linq\Concat.cs (2)
27first.IsKnownEmpty() ? second : 28second.IsKnownEmpty() ? first :
System\Linq\CountBy.cs (2)
32source.IsKnownEmpty() ? Empty<KeyValuePair<TKey, int>>() : 89source.IsKnownEmpty() ? Empty<KeyValuePair<TKey, int>>() :
System\Linq\Distinct.cs (1)
25source.IsKnownEmpty() ? Empty<TSource>() :
System\Linq\DistinctBy.cs (2)
36source.IsKnownEmpty() ? Empty<TSource>() : 92source.IsKnownEmpty() ? Empty<TSource>() :
System\Linq\Except.cs (1)
30first.IsKnownEmpty() ? Empty<TSource>() :
System\Linq\ExceptBy.cs (2)
37first.IsKnownEmpty() ? Empty<TSource>() : 103first.IsKnownEmpty() ? Empty<TSource>() :
System\Linq\GroupBy.cs (8)
36source.IsKnownEmpty() ? Empty<IGrouping<TKey, TSource>>() : 73source.IsKnownEmpty() ? Empty<IGrouping<TKey, TSource>>() : 119source.IsKnownEmpty() ? Empty<IGrouping<TKey, TElement>>() : 166source.IsKnownEmpty() ? Empty<IGrouping<TKey, TElement>>() : 212source.IsKnownEmpty() ? Empty<TResult>() : 261source.IsKnownEmpty() ? Empty<TResult>() : 314source.IsKnownEmpty() ? Empty<TResult>() : 368source.IsKnownEmpty() ? Empty<TResult>() :
System\Linq\GroupJoin.cs (2)
51outer.IsKnownEmpty() ? Empty<TResult>() : 122outer.IsKnownEmpty() ? Empty<TResult>() :
System\Linq\Index.cs (1)
24source.IsKnownEmpty() ? Empty<(int Index, TSource Item)>() :
System\Linq\Intersect.cs (2)
30first.IsKnownEmpty() || second.IsKnownEmpty() ? Empty<TSource>() :
System\Linq\IntersectBy.cs (4)
42first.IsKnownEmpty() || second.IsKnownEmpty() ? Empty<TSource>() : 112first.IsKnownEmpty() || second.IsKnownEmpty() ? Empty<TSource>() :
System\Linq\Join.cs (4)
48outer.IsKnownEmpty() || inner.IsKnownEmpty() ? Empty<TResult>() : 127outer.IsKnownEmpty() || inner.IsKnownEmpty() ? Empty<TResult>() :
System\Linq\LeftJoin.cs (2)
45outer.IsKnownEmpty() ? Empty<TResult>() : 122outer.IsKnownEmpty() ? Empty<TResult>() :
System\Linq\OfType.cs (1)
30source.IsKnownEmpty() ? Empty<TResult>() :
System\Linq\OrderBy.cs (4)
42source.IsKnownEmpty() ? EmptyAsyncEnumerable<TSource>.Instance : 64source.IsKnownEmpty() ? EmptyAsyncEnumerable<TSource>.Instance : 97source.IsKnownEmpty() ? EmptyAsyncEnumerable<TSource>.Instance : 119source.IsKnownEmpty() ? EmptyAsyncEnumerable<TSource>.Instance :
System\Linq\Reverse.cs (1)
23source.IsKnownEmpty() ? Empty<TSource>() :
System\Linq\RightJoin.cs (2)
45inner.IsKnownEmpty() ? Empty<TResult>() : 123inner.IsKnownEmpty() ? Empty<TResult>() :
System\Linq\Select.cs (4)
32source.IsKnownEmpty() ? Empty<TResult>() : 66source.IsKnownEmpty() ? Empty<TResult>() : 103source.IsKnownEmpty() ? Empty<TResult>() : 141source.IsKnownEmpty() ? Empty<TResult>() :
System\Linq\SelectMany.cs (13)
35source.IsKnownEmpty() ? Empty<TResult>() : 75source.IsKnownEmpty() ? Empty<TResult>() : 115source.IsKnownEmpty() ? Empty<TResult>() : 156source.IsKnownEmpty() ? Empty<TResult>() : 198source.IsKnownEmpty() ? Empty<TResult>() : 240source.IsKnownEmpty() ? Empty<TResult>() : 290source.IsKnownEmpty() ? Empty<TResult>() : 340source.IsKnownEmpty() ? Empty<TResult>() : 390source.IsKnownEmpty() ? Empty<TResult>() : 440source.IsKnownEmpty() ? Empty<TResult>() : 489source.IsKnownEmpty() ? Empty<TResult>() : 539source.IsKnownEmpty() ? Empty<TResult>() : 589source.IsKnownEmpty() ? Empty<TResult>() :
System\Linq\Shuffle.cs (1)
28source.IsKnownEmpty() ? Empty<TSource>() :
System\Linq\Skip.cs (1)
25source.IsKnownEmpty() ? Empty<TSource>() :
System\Linq\SkipLast.cs (1)
29source.IsKnownEmpty() ? Empty<TSource>() :
System\Linq\SkipWhile.cs (4)
35source.IsKnownEmpty() ? Empty<TSource>() : 90source.IsKnownEmpty() ? Empty<TSource>() : 149source.IsKnownEmpty() ? Empty<TSource>() : 209source.IsKnownEmpty() ? Empty<TSource>() :
System\Linq\Take.cs (2)
30source.IsKnownEmpty() || count <= 0 ? Empty<TSource>() : 66if (source.IsKnownEmpty())
System\Linq\TakeLast.cs (1)
22source.IsKnownEmpty() || count <= 0 ? Empty<TSource>() :
System\Linq\TakeWhile.cs (4)
31source.IsKnownEmpty() ? Empty<TSource>() : 68source.IsKnownEmpty() ? Empty<TSource>() : 109source.IsKnownEmpty() ? Empty<TSource>() : 151source.IsKnownEmpty() ? Empty<TSource>() :
System\Linq\Union.cs (2)
30first.IsKnownEmpty() && second.IsKnownEmpty() ? Empty<TSource>() :
System\Linq\UnionBy.cs (4)
34first.IsKnownEmpty() && second.IsKnownEmpty() ? Empty<TSource>() : 85first.IsKnownEmpty() && second.IsKnownEmpty() ? Empty<TSource>() :
System\Linq\Where.cs (4)
28source.IsKnownEmpty() ? Empty<TSource>() : 61source.IsKnownEmpty() ? Empty<TSource>() : 100source.IsKnownEmpty() ? Empty<TSource>() : 140source.IsKnownEmpty() ? Empty<TSource>() :
System\Linq\Zip.cs (9)
37first.IsKnownEmpty() || second.IsKnownEmpty() ? Empty<TResult>() : 94first.IsKnownEmpty() || second.IsKnownEmpty() ? Empty<TResult>() : 143first.IsKnownEmpty() || second.IsKnownEmpty() ? Empty<(TFirst, TSecond)>() : 196first.IsKnownEmpty() || second.IsKnownEmpty() || third.IsKnownEmpty() ? Empty<(TFirst, TSecond, TThird)>() :