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::ListTypeInfo Struct Reference
Inheritance diagram for duckdb::ListTypeInfo:
Collaboration diagram for duckdb::ListTypeInfo:

Public Member Functions

 ListTypeInfo (LogicalType child_type_p)
 
void Serialize (Serializer &serializer) const override
 
shared_ptr< ExtraTypeInfoCopy () const override
 
shared_ptr< ExtraTypeInfoDeepCopy () const override
 
- Public Member Functions inherited from duckdb::ExtraTypeInfo
 ExtraTypeInfo (ExtraTypeInfoType type)
 
 ExtraTypeInfo (ExtraTypeInfoType type, string alias)
 
bool Equals (ExtraTypeInfo *other_p) const
 
template<class TARGET >
TARGETCast ()
 
template<class TARGET >
const TARGETCast () const
 

Static Public Member Functions

static shared_ptr< ExtraTypeInfoDeserialize (Deserializer &source)
 
- Static Public Member Functions inherited from duckdb::ExtraTypeInfo
static shared_ptr< ExtraTypeInfoDeserialize (Deserializer &source)
 

Public Attributes

LogicalType child_type
 
- Public Attributes inherited from duckdb::ExtraTypeInfo
ExtraTypeInfoType type
 
string alias
 
unique_ptr< ExtensionTypeInfoextension_info
 

Protected Member Functions

bool EqualsInternal (ExtraTypeInfo *other_p) const override
 
- Protected Member Functions inherited from duckdb::ExtraTypeInfo
 ExtraTypeInfo (const ExtraTypeInfo &other)
 
ExtraTypeInfooperator= (const ExtraTypeInfo &other)
 

Constructor & Destructor Documentation

◆ ListTypeInfo() [1/2]

duckdb::ListTypeInfo::ListTypeInfo ( LogicalType  child_type_p)
explicit
72304 : ExtraTypeInfo(ExtraTypeInfoType::LIST_TYPE_INFO), child_type(std::move(child_type_p)) {
72305}

◆ ListTypeInfo() [2/2]

duckdb::ListTypeInfo::ListTypeInfo ( )
private
72300 : ExtraTypeInfo(ExtraTypeInfoType::LIST_TYPE_INFO) {
72301}

Member Function Documentation

◆ Serialize()

void duckdb::ListTypeInfo::Serialize ( Serializer serializer) const
overridevirtual

Reimplemented from duckdb::ExtraTypeInfo.

◆ Copy()

shared_ptr< ExtraTypeInfo > duckdb::ListTypeInfo::Copy ( ) const
overridevirtual

Reimplemented from duckdb::ExtraTypeInfo.

72312 {
72313 return make_shared_ptr<ListTypeInfo>(*this);
72314}

◆ DeepCopy()

shared_ptr< ExtraTypeInfo > duckdb::ListTypeInfo::DeepCopy ( ) const
overridevirtual

Reimplemented from duckdb::ExtraTypeInfo.

72316 {
72317 return make_shared_ptr<ListTypeInfo>(child_type.DeepCopy());
72318}
LogicalType DeepCopy() const
DeepCopy() will make a unique copy of any nested ExtraTypeInfo as well.

◆ EqualsInternal()

bool duckdb::ListTypeInfo::EqualsInternal ( ExtraTypeInfo other_p) const
overrideprotectedvirtual

Reimplemented from duckdb::ExtraTypeInfo.

72307 {
72308 auto &other = other_p->Cast<ListTypeInfo>();
72309 return child_type == other.child_type;
72310}

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