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

The SpecificLogicalTypeMatcher class matches only a single specified LogicalOperatorType. More...

Inheritance diagram for duckdb::SpecificLogicalTypeMatcher:
Collaboration diagram for duckdb::SpecificLogicalTypeMatcher:

Public Member Functions

 SpecificLogicalTypeMatcher (LogicalOperatorType type)
 
bool Match (LogicalOperatorType type) override
 

Private Attributes

LogicalOperatorType type
 

Detailed Description

The SpecificLogicalTypeMatcher class matches only a single specified LogicalOperatorType.

Constructor & Destructor Documentation

◆ SpecificLogicalTypeMatcher()

duckdb::SpecificLogicalTypeMatcher::SpecificLogicalTypeMatcher ( LogicalOperatorType  type)
inlineexplicit
69539 : type(type) {
69540 }

Member Function Documentation

◆ Match()

bool duckdb::SpecificLogicalTypeMatcher::Match ( LogicalOperatorType  type)
inlineoverridevirtual

Implements duckdb::LogicalOperatorMatcher.

69542 {
69543 return type == this->type;
69544 }

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