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

Public Member Functions

unique_ptr< ColumnDataCollection > & GetBuffer (const BufferedIndexReplay replay_type)
 
bool HasBufferedReplays () const
 

Public Attributes

vector< ReplayRangeranges
 
unique_ptr< ColumnDataCollectionbuffered_inserts
 
unique_ptr< ColumnDataCollectionbuffered_deletes
 

Member Function Documentation

◆ GetBuffer()

unique_ptr< ColumnDataCollection > & duckdb::BufferedIndexReplays::GetBuffer ( const BufferedIndexReplay  replay_type)
inline
49885 {
49886 if (replay_type == BufferedIndexReplay::INSERT_ENTRY) {
49887 return buffered_inserts;
49888 }
49889 return buffered_deletes;
49890 }

◆ HasBufferedReplays()

bool duckdb::BufferedIndexReplays::HasBufferedReplays ( ) const
inline
49892 {
49893 return !ranges.empty();
49894 }

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