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