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

Static Public Member Functions

static VectorGetList (Vector &list)
 
static idx_t GetListSize (Vector &list)
 
static VectorGetEntry (Vector &list)
 

Member Function Documentation

◆ GetList()

static Vector & duckdb::ListArgFunctor::GetList ( Vector list)
inlinestatic
81526 {
81527 return list;
81528 }

◆ GetListSize()

static idx_t duckdb::ListArgFunctor::GetListSize ( Vector list)
inlinestatic
81529 {
81530 return ListVector::GetListSize(list);
81531 }
static DUCKDB_API idx_t GetListSize(const Vector &vector)
Gets the total size of the underlying child-vector of a list.

◆ GetEntry()

static Vector & duckdb::ListArgFunctor::GetEntry ( Vector list)
inlinestatic
81532 {
81533 return ListVector::GetEntry(list);
81534 }
static DUCKDB_API const Vector & GetEntry(const Vector &vector)
Gets a reference to the underlying child-vector of a list.

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