This API is preliminary and subject to change.
Enumerates the possible ways of joining two indexes.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
Public Enumeration JoinType
public enum class JoinType
| Member name | Value | Description |
---|
| Outer | 0 |
Perform an outer join, where every entry that is included in either index
is included in the result.
|
| Inner | 1 |
Perform an inner join, where every entry that is included in both indexes is included in the result.
|
| Left | 2 |
Perform a left join, where every entry that is included in the left operand is included in the result.
|
| Right | 3 |
Perform a right join, where every entry that is included in the right operand is included in the result.
|
Reference