Constructs a grouping that represents a collection of
non-overlapping chunks of fixed length.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Grouping<int> Partition(
IList<int> offsets
)
Public Shared Function Partition (
offsets As IList(Of Integer)
) As Grouping(Of Integer)
public:
static Grouping<int>^ Partition(
IList<int>^ offsets
)
static member Partition :
offsets : IList<int> -> Grouping<int>
Parameters
- offsets
- Type: System.Collections.GenericIListInt32
Integer array containing the offsets
of the partition boundaries.
Return Value
Type:
GroupingInt32A grouping object that represents the chunking.
Reference