Index.Join<T> Method

Returns the index that results from applying the specified join operation to two indexes.

Definition

Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Index<T> Join<T>(
	Index<T> left,
	Index<T> right,
	JoinType joinType,
	out int[] leftIndexes,
	out int[] rightIndexes
)

Parameters

left  Index<T>
The first index to join.
right  Index<T>
The second index.
joinType  JoinType
The type of join.
leftIndexes  Int32[]
An array of indexes of the elements of the current index in the new index.
rightIndexes  Int32[]
An array of indexes of the elements of right in the new index.

Type Parameters

T

Return Value

Index<T>
The joined index.

See Also