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::MultiFileFilterMap Struct Reference
Collaboration diagram for duckdb::MultiFileFilterMap:

Public Member Functions

void push_back (const MultiFileFilterEntry &filter_entry)
 
MultiFileFilterEntryoperator[] (MultiFileGlobalIndex global_index)
 
void resize (idx_t size)
 

Private Attributes

vector< MultiFileFilterEntryfilter_map
 

Member Function Documentation

◆ push_back()

void duckdb::MultiFileFilterMap::push_back ( const MultiFileFilterEntry filter_entry)
inline
53619 { // NOLINT: matching name of std
53620 filter_map.push_back(filter_entry);
53621 }

◆ operator[]()

MultiFileFilterEntry & duckdb::MultiFileFilterMap::operator[] ( MultiFileGlobalIndex  global_index)
inline
53622 {
53623 return filter_map[global_index.index];
53624 }

◆ resize()

void duckdb::MultiFileFilterMap::resize ( idx_t  size)
inline
53625 { // NOLINT: matching name of std
53626 filter_map.resize(size);
53627 }

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