Constructs a new 3 level index from the specified level values.
Namespace: Extreme.DataAnalysisAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.17114.0)
public static Index<Tuple<T1, T2, T3>> Create<T1, T2, T3>(
IList<T1> level1,
IList<T2> level2,
IList<T3> level3
)
Public Shared Function Create(Of T1, T2, T3) (
level1 As IList(Of T1),
level2 As IList(Of T2),
level3 As IList(Of T3)
) As Index(Of Tuple(Of T1, T2, T3))
public:
generic<typename T1, typename T2, typename T3>
static Index<Tuple<T1, T2, T3>^>^ Create(
IList<T1>^ level1,
IList<T2>^ level2,
IList<T3>^ level3
)
static member Create :
level1 : IList<'T1> *
level2 : IList<'T2> *
level3 : IList<'T3> -> Index<Tuple<'T1, 'T2, 'T3>>
Parameters
- level1
- Type: System.Collections.GenericIListT1
A list of values for the first level. - level2
- Type: System.Collections.GenericIListT2
A list of values for the second level. - level3
- Type: System.Collections.GenericIListT3
A list of values for the third level.
Type Parameters
- T1
- T2
- T3
Return Value
Type:
IndexTupleT1,
T2,
T3A new index with the specified values.
Numerical Libraries
Supported in: 6.0
Reference