Index.Intersect<T> Method

Returns the intersection of two indexes.

Definition

Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Index<T> Intersect<T>(
	Index<T> left,
	Index<T> right
)

Parameters

left  Index<T>
The first index.
right  Index<T>
The second index.

Type Parameters

T

Return Value

Index<T>
The intersection of left and right.

Remarks

The elements are returned in the order in which they appear in left.

See Also