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::LogicalDependencyEquality Struct Reference

Public Member Functions

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

Member Function Documentation

◆ operator()()

bool duckdb::LogicalDependencyEquality::operator() ( const LogicalDependency a,
const LogicalDependency b 
) const
25380 {
25381 if (a.entry.type != b.entry.type) {
25382 return false;
25383 }
25384 if (a.entry.name != b.entry.name) {
25385 return false;
25386 }
25387 if (a.entry.schema != b.entry.schema) {
25388 return false;
25389 }
25390 if (a.catalog != b.catalog) {
25391 return false;
25392 }
25393 return true;
25394}

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