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

Public Member Functions

 list_entry_t (uint64_t offset, uint64_t length)
 
constexpr bool operator!= (const list_entry_t &other) const
 
constexpr bool operator== (const list_entry_t &other) const
 

Public Attributes

uint64_t offset
 
uint64_t length
 

Constructor & Destructor Documentation

◆ list_entry_t()

duckdb::list_entry_t::list_entry_t ( uint64_t  offset,
uint64_t  length 
)
inline
2718 : offset(offset), length(length) {
2719 }

Member Function Documentation

◆ operator!=()

constexpr bool duckdb::list_entry_t::operator!= ( const list_entry_t other) const
inlineconstexpr
2720 {
2721 return !(*this == other);
2722 }

◆ operator==()

constexpr bool duckdb::list_entry_t::operator== ( const list_entry_t other) const
inlineconstexpr
2723 {
2724 return offset == other.offset && length == other.length;
2725 }

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