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::GlobalTableFunctionState Struct Reference
Inheritance diagram for duckdb::GlobalTableFunctionState:

Public Member Functions

virtual idx_t MaxThreads () const
 
template<class TARGET >
TARGETCast ()
 
template<class TARGET >
const TARGETCast () const
 

Static Public Attributes

static constexpr const int64_t MAX_THREADS = 999999999
 

Member Function Documentation

◆ MaxThreads()

virtual idx_t duckdb::GlobalTableFunctionState::MaxThreads ( ) const
inlinevirtual
26209 {
26210 return 1;
26211 }

◆ Cast() [1/2]

template<class TARGET >
TARGET & duckdb::GlobalTableFunctionState::Cast ( )
inline
26214 {
26215 DynamicCastCheck<TARGET>(this);
26216 return reinterpret_cast<TARGET &>(*this);
26217 }

◆ Cast() [2/2]

template<class TARGET >
const TARGET & duckdb::GlobalTableFunctionState::Cast ( ) const
inline
26219 {
26220 DynamicCastCheck<TARGET>(this);
26221 return reinterpret_cast<const TARGET &>(*this);
26222 }

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