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

Public Member Functions

 SequenceData (CreateSequenceInfo &info)
 

Public Attributes

uint64_t usage_count
 The amount of times the sequence has been used.
 
int64_t counter
 The sequence counter.
 
int64_t last_value
 The most recently returned value.
 
int64_t increment
 The increment value.
 
int64_t start_value
 The minimum value of the sequence.
 
int64_t min_value
 The minimum value of the sequence.
 
int64_t max_value
 The maximum value of the sequence.
 
bool cycle
 Whether or not the sequence cycles.
 

Constructor & Destructor Documentation

◆ SequenceData()

duckdb::SequenceData::SequenceData ( CreateSequenceInfo info)
explicit
20255 : usage_count(info.usage_count), counter(info.start_value), last_value(info.start_value), increment(info.increment),
20256 start_value(info.start_value), min_value(info.min_value), max_value(info.max_value), cycle(info.cycle) {
20257}
int64_t increment
The increment value.
Definition duckdb.hpp:28984
int64_t min_value
The minimum value of the sequence.
Definition duckdb.hpp:28988
uint64_t usage_count
The amount of times the sequence has been used.
Definition duckdb.hpp:28978
int64_t last_value
The most recently returned value.
Definition duckdb.hpp:28982
int64_t start_value
The minimum value of the sequence.
Definition duckdb.hpp:28986
int64_t max_value
The maximum value of the sequence.
Definition duckdb.hpp:28990
int64_t counter
The sequence counter.
Definition duckdb.hpp:28980
bool cycle
Whether or not the sequence cycles.
Definition duckdb.hpp:28992

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