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

Public Member Functions

void Verify (const idx_t block_size)
 

Public Attributes

uint32_t size
 The size of the dictionary.
 
uint32_t end
 The end of the dictionary, which defaults to the block size.
 

Member Function Documentation

◆ Verify()

void duckdb::StringDictionaryContainer::Verify ( const idx_t  block_size)
inline
75187 {
75188 D_ASSERT(size <= block_size);
75189 D_ASSERT(end <= block_size);
75190 D_ASSERT(size <= end);
75191 }
uint32_t end
The end of the dictionary, which defaults to the block size.
Definition duckdb.cpp:75185
uint32_t size
The size of the dictionary.
Definition duckdb.cpp:75183

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