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

The SpecificExpressionTypeMatcher class matches a single specified Expression type. More...

Inheritance diagram for duckdb::SpecificExpressionTypeMatcher:
Collaboration diagram for duckdb::SpecificExpressionTypeMatcher:

Public Member Functions

 SpecificExpressionTypeMatcher (ExpressionType type)
 
bool Match (ExpressionType type) override
 

Private Attributes

ExpressionType type
 

Detailed Description

The SpecificExpressionTypeMatcher class matches a single specified Expression type.

Constructor & Destructor Documentation

◆ SpecificExpressionTypeMatcher()

duckdb::SpecificExpressionTypeMatcher::SpecificExpressionTypeMatcher ( ExpressionType  type)
inlineexplicit
69064 : type(type) {
69065 }

Member Function Documentation

◆ Match()

bool duckdb::SpecificExpressionTypeMatcher::Match ( ExpressionType  type)
inlineoverridevirtual

Implements duckdb::ExpressionTypeMatcher.

69067 {
69068 return type == this->type;
69069 }

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