Returns the union of two indexes.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Index<T> Union<T>(
Index<T> left,
Index<T> right
)
Public Shared Function Union(Of T) (
left As Index(Of T),
right As Index(Of T)
) As Index(Of T)
public:
generic<typename T>
static Index<T>^ Union(
Index<T>^ left,
Index<T>^ right
)
static member Union :
left : Index<'T> *
right : Index<'T> -> Index<'T>
Parameters
- left
- Type: Extreme.DataAnalysisIndexT
The first index. - right
- Type: Extreme.DataAnalysisIndexT
The second index.
Type Parameters
- T
Return Value
Type:
IndexTThe intersection of
left and
right.
The elements are returned in the following order. First, all elements of
right are returned, followed by the elements of left
that do not appear in right.
Reference