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::BoundAtClause Class Reference

The AT clause specifies which version of a table to read. More...

Collaboration diagram for duckdb::BoundAtClause:

Public Member Functions

 BoundAtClause (string unit_p, Value value_p)
 
const string & Unit () const
 
const ValueGetValue () const
 

Private Attributes

string unit
 The unit (e.g. TIMESTAMP or VERSION)
 
Value val
 The value that is associated with the unit (e.g. TIMESTAMP '2020-01-01')
 

Detailed Description

The AT clause specifies which version of a table to read.

Constructor & Destructor Documentation

◆ BoundAtClause()

duckdb::BoundAtClause::BoundAtClause ( string  unit_p,
Value  value_p 
)
inline
70375 : unit(std::move(unit_p)), val(std::move(value_p)) {
70376 }
string unit
The unit (e.g. TIMESTAMP or VERSION)
Definition duckdb.cpp:70388
Value val
The value that is associated with the unit (e.g. TIMESTAMP '2020-01-01')
Definition duckdb.cpp:70390

Member Function Documentation

◆ Unit()

const string & duckdb::BoundAtClause::Unit ( ) const
inline
70379 {
70380 return unit;
70381 }

◆ GetValue()

const Value & duckdb::BoundAtClause::GetValue ( ) const
inline
70382 {
70383 return val;
70384 }

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