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::HivePartitionKey::Equality Struct Reference

Public Member Functions

bool operator() (const HivePartitionKey &a, const HivePartitionKey &b) const
 

Member Function Documentation

◆ operator()()

bool duckdb::HivePartitionKey::Equality::operator() ( const HivePartitionKey a,
const HivePartitionKey b 
) const
inline
51570 {
51571 if (a.values.size() != b.values.size()) {
51572 return false;
51573 }
51574 for (idx_t i = 0; i < a.values.size(); i++) {
51575 if (!Value::NotDistinctFrom(a.values[i], b.values[i])) {
51576 return false;
51577 }
51578 }
51579 return true;
51580 }
static DUCKDB_API bool NotDistinctFrom(const Value &lvalue, const Value &rvalue)
Returns true if the values are not distinct from each other, following SQL semantics for NOT DISTINCT...

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