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

Public Member Functions

template<>
DUCKDB_API bool Operation (const float &left, const float &right)
 
template<>
DUCKDB_API bool Operation (const double &left, const double &right)
 
template<>
bool Operation (const string_t &left, const string_t &right)
 
template<>
bool Operation (const interval_t &left, const interval_t &right)
 

Static Public Member Functions

template<class T >
static bool Operation (const T &left, const T &right)
 

Member Function Documentation

◆ Operation() [1/3]

template<class T >
static bool duckdb::Equals::Operation ( const T &  left,
const T &  right 
)
inlinestatic
14376 {
14377 return left == right;
14378 }

◆ Operation() [2/3]

template<>
bool duckdb::Equals::Operation ( const string_t left,
const string_t right 
)
inline
14542 {
14543 return left == right;
14544}

◆ Operation() [3/3]

template<>
bool duckdb::Equals::Operation ( const interval_t left,
const interval_t right 
)
inline
14555 {
14556 return Interval::Equals(left, right);
14557}
static bool Equals(const interval_t &left, const interval_t &right)
Comparison operators.
Definition duckdb.hpp:5326

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