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::ArrowArrayWrapper Class Reference
Collaboration diagram for duckdb::ArrowArrayWrapper:

Public Member Functions

 ArrowArrayWrapper (ArrowArrayWrapper &&other) noexcept
 
ArrowArrayWrapperoperator= (ArrowArrayWrapper &&other) noexcept
 

Public Attributes

ArrowArray arrow_array
 

Constructor & Destructor Documentation

◆ ArrowArrayWrapper() [1/2]

duckdb::ArrowArrayWrapper::ArrowArrayWrapper ( )
inline
11368 {
11369 arrow_array.length = 0;
11370 arrow_array.release = nullptr;
11371 }
void(* release)(struct ArrowArray *)
Release callback.
Definition duckdb.hpp:11299
int64_t length
Array data description.
Definition duckdb.hpp:11289

◆ ArrowArrayWrapper() [2/2]

duckdb::ArrowArrayWrapper::ArrowArrayWrapper ( ArrowArrayWrapper &&  other)
inlinenoexcept
11372 : arrow_array(other.arrow_array) {
11373 other.arrow_array.release = nullptr;
11374 }

◆ ~ArrowArrayWrapper()

duckdb::ArrowArrayWrapper::~ArrowArrayWrapper ( )
45700 {
45701 if (arrow_array.release) {
45702 arrow_array.release(&arrow_array);
45703 D_ASSERT(!arrow_array.release);
45704 }
45705}

Member Function Documentation

◆ operator=()

ArrowArrayWrapper & duckdb::ArrowArrayWrapper::operator= ( ArrowArrayWrapper &&  other)
inlinenoexcept
11375 {
11376 if (this != &other) {
11377 if (arrow_array.release) {
11378 arrow_array.release(&arrow_array);
11379 }
11380 arrow_array = other.arrow_array;
11381 other.arrow_array.release = nullptr;
11382 }
11383 return *this;
11384 }

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