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

The ManyExpressionTypeMatcher class matches a set of ExpressionTypes. More...

Inheritance diagram for duckdb::ManyExpressionTypeMatcher:
Collaboration diagram for duckdb::ManyExpressionTypeMatcher:

Public Member Functions

 ManyExpressionTypeMatcher (vector< ExpressionType > types)
 
bool Match (ExpressionType type) override
 

Private Attributes

vector< ExpressionType > types
 

Detailed Description

The ManyExpressionTypeMatcher class matches a set of ExpressionTypes.

Constructor & Destructor Documentation

◆ ManyExpressionTypeMatcher()

duckdb::ManyExpressionTypeMatcher::ManyExpressionTypeMatcher ( vector< ExpressionType >  types)
inlineexplicit
69078 : types(std::move(types)) {
69079 }

Member Function Documentation

◆ Match()

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

Implements duckdb::ExpressionTypeMatcher.

69081 {
69082 return std::find(types.begin(), types.end(), type) != types.end();
69083 }

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