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

Public Member Functions

 PhysicalIndex (idx_t index)
 
bool operator== (const PhysicalIndex &rhs) const
 
bool operator!= (const PhysicalIndex &rhs) const
 
bool operator< (const PhysicalIndex &rhs) const
 
bool IsValid ()
 

Public Attributes

idx_t index
 

Constructor & Destructor Documentation

◆ PhysicalIndex()

duckdb::PhysicalIndex::PhysicalIndex ( idx_t  index)
inlineexplicit
1143 : index(index) {
1144 }

Member Function Documentation

◆ operator==()

bool duckdb::PhysicalIndex::operator== ( const PhysicalIndex rhs) const
inline
1148 {
1149 return index == rhs.index;
1150 };

◆ operator!=()

bool duckdb::PhysicalIndex::operator!= ( const PhysicalIndex rhs) const
inline
1151 {
1152 return index != rhs.index;
1153 };

◆ operator<()

bool duckdb::PhysicalIndex::operator< ( const PhysicalIndex rhs) const
inline
1154 {
1155 return index < rhs.index;
1156 };

◆ IsValid()

bool duckdb::PhysicalIndex::IsValid ( )
inline
1157 {
1158 return index != DConstants::INVALID_INDEX;
1159 }
static constexpr const idx_t INVALID_INDEX
The value used to signify an invalid index entry.
Definition duckdb.hpp:1117

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