2 implementations of IParallelPartitionable
System.Core (2)
System\Linq\Parallel\Enumerables\RangeEnumerable.cs (1)
22
internal class RangeEnumerable : ParallelQuery<int>,
IParallelPartitionable
<int>
System\Linq\Parallel\Enumerables\RepeatEnumerable.cs (1)
24
internal class RepeatEnumerable<TResult> : ParallelQuery<TResult>,
IParallelPartitionable
<TResult>
3 references to IParallelPartitionable
System.Core (3)
System\Linq\Parallel\Utils\ExchangeUtilities.cs (2)
44
IParallelPartitionable
<T> sourceAsPartitionable = source as
IParallelPartitionable
<T>;
System\Linq\ParallelEnumerable.cs (1)
158
if (!(source is ParallelEnumerableWrapper<TSource> || source is
IParallelPartitionable
<TSource>))