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