Click or drag to resize

ExpandCyclingVariableColumnActionsDecomposeIntoRepeatUnits Method

Decomposes a column into repeat units by analysing the values of the column with increasing index. If a column value is repeated, the current range is finalized and a new range is started. At the end, a list of index ranges is returned. Inside each range the column values are guaranteed to be unique.

Namespace: Altaxo.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static IList<ContiguousIntegerRange> DecomposeIntoRepeatUnits(
	DataColumn col
)

Parameters

col  DataColumn
Column to decompose.

Return Value

IListContiguousIntegerRange
List of integer ranges. Inside a single range the column values are ensured to be unique.
See Also