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

Public Member Functions

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

Public Attributes

idx_t index
 

Constructor & Destructor Documentation

◆ LogicalIndex()

duckdb::LogicalIndex::LogicalIndex ( idx_t  index)
inlineexplicit
1123 : index(index) {
1124 }

Member Function Documentation

◆ operator==()

bool duckdb::LogicalIndex::operator== ( const LogicalIndex rhs) const
inline
1128 {
1129 return index == rhs.index;
1130 };

◆ operator!=()

bool duckdb::LogicalIndex::operator!= ( const LogicalIndex rhs) const
inline
1131 {
1132 return index != rhs.index;
1133 };

◆ operator<()

bool duckdb::LogicalIndex::operator< ( const LogicalIndex rhs) const
inline
1134 {
1135 return index < rhs.index;
1136 };

◆ IsValid()

bool duckdb::LogicalIndex::IsValid ( )
inline
1137 {
1138 return index != DConstants::INVALID_INDEX;
1139 }
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: