| File: System\Linq\Parallel\Enumerables\IParallelPartitionable.cs | Web Access |
| Project: src\runtime\src\libraries\System.Linq.Parallel\src\System.Linq.Parallel.csproj (System.Linq.Parallel) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ // // IParallelPartitionable.cs // // =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- namespace System.Linq.Parallel { /// <summary> /// /// An interface that allows developers to specify their own partitioning routines. /// /// </summary> /// <typeparam name="T"></typeparam> internal interface IParallelPartitionable<T> { QueryOperatorEnumerator<T, int>[] GetPartitions(int partitionCount); } }