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::FunctionData Struct Referenceabstract
Inheritance diagram for duckdb::FunctionData:

Public Member Functions

virtual DUCKDB_API unique_ptr< FunctionDataCopy () const =0
 
virtual DUCKDB_API bool Equals (const FunctionData &other) const =0
 
virtual DUCKDB_API bool SupportStatementCache () const
 
template<class TARGET >
TARGETCast ()
 
template<class TARGET >
const TARGETCast () const
 
template<class TARGET >
TARGETCastNoConst () const
 

Static Public Member Functions

static DUCKDB_API bool Equals (const FunctionData *left, const FunctionData *right)
 

Member Function Documentation

◆ Cast() [1/2]

template<class TARGET >
TARGET & duckdb::FunctionData::Cast ( )
inline
13843 {
13844 DynamicCastCheck<TARGET>(this);
13845 return reinterpret_cast<TARGET &>(*this);
13846 }

◆ Cast() [2/2]

template<class TARGET >
const TARGET & duckdb::FunctionData::Cast ( ) const
inline
13848 {
13849 DynamicCastCheck<TARGET>(this);
13850 return reinterpret_cast<const TARGET &>(*this);
13851 }

◆ CastNoConst()

template<class TARGET >
TARGET & duckdb::FunctionData::CastNoConst ( ) const
inline
13854 {
13855 return const_cast<TARGET &>(Cast<TARGET>()); // NOLINT: FIXME
13856 }

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