2 implementations of IParallelPartitionable
System.Linq.Parallel (2)
System\Linq\Parallel\Enumerables\RangeEnumerable.cs (1)
18
internal sealed class RangeEnumerable : ParallelQuery<int>,
IParallelPartitionable
<int>
System\Linq\Parallel\Enumerables\RepeatEnumerable.cs (1)
21
internal sealed class RepeatEnumerable<TResult> : ParallelQuery<TResult>,
IParallelPartitionable
<TResult>
2 references to IParallelPartitionable
System.Linq.Parallel (2)
System\Linq\Parallel\Utils\ExchangeUtilities.cs (1)
37
if (source is
IParallelPartitionable
<T> sourceAsPartitionable)
System\Linq\ParallelEnumerable.cs (1)
153
if (!(source is ParallelEnumerableWrapper<TSource> || source is
IParallelPartitionable
<TSource>))