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

Public Member Functions

 VectorAuxiliaryData (VectorAuxiliaryDataType type_p)
 
template<class TARGET >
TARGETCast ()
 
template<class TARGET >
const TARGETCast () const
 

Public Attributes

VectorAuxiliaryDataType type
 

Constructor & Destructor Documentation

◆ VectorAuxiliaryData()

duckdb::VectorAuxiliaryData::VectorAuxiliaryData ( VectorAuxiliaryDataType  type_p)
inlineexplicit
9980 : type(type_p) {
9981
9982 };

◆ ~VectorAuxiliaryData()

virtual duckdb::VectorAuxiliaryData::~VectorAuxiliaryData ( )
inlinevirtual
9985 {
9986 }

Member Function Documentation

◆ Cast() [1/2]

template<class TARGET >
TARGET & duckdb::VectorAuxiliaryData::Cast ( )
inline
9990 {
9991 if (type != TARGET::TYPE) {
9992 throw InternalException("Failed to cast vector auxiliary data to type - type mismatch");
9993 }
9994 return reinterpret_cast<TARGET &>(*this);
9995 }

◆ Cast() [2/2]

template<class TARGET >
const TARGET & duckdb::VectorAuxiliaryData::Cast ( ) const
inline
9998 {
9999 if (type != TARGET::TYPE) {
10000 throw InternalException("Failed to cast vector auxiliary data to type - type mismatch");
10001 }
10002 return reinterpret_cast<const TARGET &>(*this);
10003 }

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