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