Join Type Enumeration
Enumerates the possible ways of joining two indexes.
Definition
Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.4
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.4
public enum JoinType
Members
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. |