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::SpecificTypeMatcher Class Reference

The SpecificTypeMatcher class matches only a single specified type. More...

Inheritance diagram for duckdb::SpecificTypeMatcher:
Collaboration diagram for duckdb::SpecificTypeMatcher:

Public Member Functions

 SpecificTypeMatcher (LogicalType type)
 
bool Match (const LogicalType &type_p) override
 

Private Attributes

LogicalType type
 

Detailed Description

The SpecificTypeMatcher class matches only a single specified type.

Constructor & Destructor Documentation

◆ SpecificTypeMatcher()

duckdb::SpecificTypeMatcher::SpecificTypeMatcher ( LogicalType  type)
inlineexplicit
69256 : type(std::move(type)) {
69257 }

Member Function Documentation

◆ Match()

bool duckdb::SpecificTypeMatcher::Match ( const LogicalType type_p)
inlineoverridevirtual

Implements duckdb::TypeMatcher.

69259 {
69260 return type_p == this->type;
69261 }

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