JoinType Enumeration

This API is preliminary and subject to change.
Enumerates the possible ways of joining two indexes.

Definition

Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public enum JoinType

Members

Outer0 Perform an outer join, where every entry that is included in either index is included in the result.
Inner1 Perform an inner join, where every entry that is included in both indexes is included in the result.
Left2 Perform a left join, where every entry that is included in the left operand is included in the result.
Right3 Perform a right join, where every entry that is included in the right operand is included in the result.

See Also