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

Public Member Functions

template<class T >
void WriteElement (const T &value)
 
void WriteElement (data_ptr_t ptr, idx_t size)
 Serialize bytes.
 
template<class FUNC >
void WriteObject (FUNC f)
 

Private Member Functions

 List (Serializer &serializer)
 

Private Attributes

friend Serializer
 
Serializerserializer
 

Constructor & Destructor Documentation

◆ List()

duckdb::Serializer::List::List ( Serializer serializer)
inlineexplicitprivate
52779 : serializer(serializer) {
52780 }

Member Function Documentation

◆ WriteElement()

template<class T >
void duckdb::Serializer::List::WriteElement ( const T &  value)
53119 {
53120 serializer.WriteValue(value);
53121}

◆ WriteObject()

template<class FUNC >
void duckdb::Serializer::List::WriteObject ( FUNC  f)
53112 {
53113 serializer.OnObjectBegin();
53114 f(serializer);
53115 serializer.OnObjectEnd();
53116}

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