4 overrides of GetSortIndices
Microsoft.Data.Analysis (4)
DataFrameColumns\ArrowStringDataFrameColumn.cs (1)
366
internal override PrimitiveDataFrameColumn<long>
GetSortIndices
(bool ascending, bool putNullValuesLast) => throw new NotSupportedException();
DataFrameColumns\StringDataFrameColumn.cs (1)
205
internal override PrimitiveDataFrameColumn<long>
GetSortIndices
(bool ascending, bool putNullValuesLast)
DataFrameColumns\VBufferDataFrameColumn.cs (1)
387
internal override PrimitiveDataFrameColumn<long>
GetSortIndices
(bool ascending, bool putNullValuesLast) => throw new NotImplementedException();
PrimitiveDataFrameColumn.Sort.cs (1)
21
internal override PrimitiveDataFrameColumn<long>
GetSortIndices
(bool ascending = true, bool putNullValuesLast = true)
2 references to GetSortIndices
Microsoft.Data.Analysis (2)
DataFrame.cs (1)
681
PrimitiveDataFrameColumn<long> sortIndices = column.
GetSortIndices
(ascending, putNullValuesLast);
DataFrameColumn.cs (1)
246
PrimitiveDataFrameColumn<long> sortIndices =
GetSortIndices
(ascending, putNullValuesLast);