Constructs a grouping based on the values in the specified list.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Grouping<T> ByValue<T>(
IList<T> values
)
Public Shared Function ByValue(Of T) (
values As IList(Of T)
) As Grouping(Of T)
public:
generic<typename T>
static Grouping<T>^ ByValue(
IList<T>^ values
)
static member ByValue :
values : IList<'T> -> Grouping<'T>
Parameters
- values
- Type: System.Collections.GenericIListT
A list that contains the values to group on.
Type Parameters
- T
- The element type of the list.
Return Value
Type:
GroupingT
Reference