![]() |
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.
|
The VectorChildBuffer holds a child Vector. More...
#include <duckdb.hpp>


Public Member Functions | |
| VectorChildBuffer (Vector vector) | |
Public Member Functions inherited from duckdb::VectorBuffer | |
| VectorBuffer (VectorBufferType type) | |
| VectorBuffer (idx_t data_size) | |
| VectorBuffer (AllocatedData &&data_p) | |
| data_ptr_t | GetData () |
| void | SetData (AllocatedData &&new_data) |
| VectorAuxiliaryData * | GetAuxiliaryData () |
| void | SetAuxiliaryData (unique_ptr< VectorAuxiliaryData > aux_data_p) |
| void | MoveAuxiliaryData (VectorBuffer &source_buffer) |
| virtual optional_ptr< Allocator > | GetAllocator () const |
| VectorBufferType | GetBufferType () const |
| VectorAuxiliaryDataType | GetAuxiliaryDataType () const |
| template<class TARGET > | |
| TARGET & | Cast () |
| template<class TARGET > | |
| const TARGET & | Cast () const |
Public Attributes | |
| Vector | data |
| optional_idx | size |
| Optional size/id to uniquely identify re-occurring dictionaries. | |
| string | id |
| mutex | cached_hashes_lock |
| For caching the hashes of a child buffer. | |
| Vector | cached_hashes |
Additional Inherited Members | |
Static Public Member Functions inherited from duckdb::VectorBuffer | |
| static buffer_ptr< VectorBuffer > | CreateStandardVector (PhysicalType type, idx_t capacity=STANDARD_VECTOR_SIZE) |
| static buffer_ptr< VectorBuffer > | CreateConstantVector (PhysicalType type) |
| static buffer_ptr< VectorBuffer > | CreateConstantVector (const LogicalType &logical_type) |
| static buffer_ptr< VectorBuffer > | CreateStandardVector (const LogicalType &logical_type, idx_t capacity=STANDARD_VECTOR_SIZE) |
Protected Attributes inherited from duckdb::VectorBuffer | |
| VectorBufferType | buffer_type |
| unique_ptr< VectorAuxiliaryData > | aux_data |
| AllocatedData | data |
The VectorChildBuffer holds a child Vector.
|
inlineexplicit |