Index.Intersect<T> Method

Returns the intersection of two indexes.

Definition

Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
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