FrameViewOrderByT(String, ComparisonT) Method
            Sorts all rows by the given function of the given column.
            
Namespace: Meta.Numerics.DataAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
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 
- columnName  String
 - The column to sort on.
 - comparer  ComparisonT
 - A comparison function of columnName values.
 
- T
 - The type of values being compared.
 
FrameViewA view of the data sorted by the function of the given column.