FrameViewOrderByT Method (String, ComparisonT) |
Sorts all rows by the given function of the given column.
Namespace:
Meta.Numerics.Data
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public FrameView OrderBy<T>(
string columnName,
Comparison<T> comparer
)
Public Function OrderBy(Of T) (
columnName As String,
comparer As Comparison(Of T)
) As FrameView
public:
generic<typename T>
FrameView^ OrderBy(
String^ columnName,
Comparison<T>^ comparer
)
member OrderBy :
columnName : string *
comparer : Comparison<'T> -> FrameView
Parameters
- columnName
- Type: SystemString
The column to sort on. - comparer
- Type: SystemComparisonT
A comparison function of columnName values.
Type Parameters
- T
- The type of values being compared.
Return Value
Type:
FrameViewA view of the data sorted by the function of the given column.
See Also