Autonomy Software C++ 24.5.1
Welcome to the Autonomy Software repository of the Mars Rover Design Team (MRDT) at Missouri University of Science and Technology (Missouri S&T)! API reference contains the source code and other resources for the development of the autonomy software for our Mars rover. The Autonomy Software project aims to compete in the University Rover Challenge (URC) by demonstrating advanced autonomous capabilities and robust navigation algorithms.
Loading...
Searching...
No Matches
duckdb::JoinSide Class Reference

Public Types

enum  JoinValue : uint8_t { NONE , LEFT , RIGHT , BOTH }
 

Public Member Functions

constexpr JoinSide (JoinValue val)
 
bool operator== (JoinSide a) const
 
bool operator!= (JoinSide a) const
 

Static Public Member Functions

static JoinSide CombineJoinSide (JoinSide left, JoinSide right)
 
static JoinSide GetJoinSide (idx_t table_binding, const unordered_set< idx_t > &left_bindings, const unordered_set< uint64_t > &right_bindings)
 
static JoinSide GetJoinSide (Expression &expression, const unordered_set< idx_t > &left_bindings, const unordered_set< idx_t > &right_bindings)
 
static JoinSide GetJoinSide (const unordered_set< idx_t > &bindings, const unordered_set< idx_t > &left_bindings, const unordered_set< idx_t > &right_bindings)
 

Private Attributes

JoinValue value
 

Member Enumeration Documentation

◆ JoinValue

enum duckdb::JoinSide::JoinValue : uint8_t
38073: uint8_t { NONE, LEFT, RIGHT, BOTH };
::uint8_t uint8_t

Constructor & Destructor Documentation

◆ JoinSide()

constexpr duckdb::JoinSide::JoinSide ( JoinValue  val)
inlineconstexpr
38076 : value(val) { // NOLINT: Allow implicit conversion from `join_value`
38077 }

Member Function Documentation

◆ operator==()

bool duckdb::JoinSide::operator== ( JoinSide  a) const
inline
38079 {
38080 return value == a.value;
38081 }

◆ operator!=()

bool duckdb::JoinSide::operator!= ( JoinSide  a) const
inline
38082 {
38083 return value != a.value;
38084 }

The documentation for this class was generated from the following file: