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::MultiFileLocalColumnIds< T > Struct Template Reference

fwd declare More...

Collaboration diagram for duckdb::MultiFileLocalColumnIds< T >:

Public Member Functions

void push_back (T column_id)
 
template<typename... Args>
void emplace_back (Args &&...args)
 
const T & operator[] (MultiFileLocalIndex index)
 
bool empty () const
 
idx_t size () const
 

Private Attributes

vector< T > column_ids
 

Detailed Description

template<class T>
struct duckdb::MultiFileLocalColumnIds< T >

fwd declare

Member Function Documentation

◆ push_back()

template<class T >
void duckdb::MultiFileLocalColumnIds< T >::push_back ( column_id)
inline
53596 { // NOLINT: matching name of std
53597 column_ids.push_back(column_id);
53598 }

◆ emplace_back()

template<class T >
template<typename... Args>
void duckdb::MultiFileLocalColumnIds< T >::emplace_back ( Args &&...  args)
inline
53600 {
53601 column_ids.emplace_back(std::forward<Args>(args)...);
53602 }

◆ operator[]()

template<class T >
const T & duckdb::MultiFileLocalColumnIds< T >::operator[] ( MultiFileLocalIndex  index)
inline
53603 {
53604 return column_ids[index.index];
53605 }
index

◆ empty()

template<class T >
bool duckdb::MultiFileLocalColumnIds< T >::empty ( ) const
inline
53606 { // NOLINT: matching name of std
53607 return column_ids.empty();
53608 }

◆ size()

template<class T >
idx_t duckdb::MultiFileLocalColumnIds< T >::size ( ) const
inline
53609 { // NOLINT: matching name of std
53610 return column_ids.size();
53611 }

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