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::GreaterThan 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 bool &left, const bool &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/4]

template<class T >
static bool duckdb::GreaterThan::Operation ( const T &  left,
const T &  right 
)
inlinestatic
14389 {
14390 return left > right;
14391 }

◆ Operation() [2/4]

template<>
bool duckdb::GreaterThan::Operation ( const bool &  left,
const bool &  right 
)
inline
14535 {
14536 return !right && left;
14537}

◆ Operation() [3/4]

template<>
bool duckdb::GreaterThan::Operation ( const string_t left,
const string_t right 
)
inline
14547 {
14548 return left > right;
14549}

◆ Operation() [4/4]

template<>
bool duckdb::GreaterThan::Operation ( const interval_t left,
const interval_t right 
)
inline
14559 {
14560 return Interval::GreaterThan(left, right);
14561}

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