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

The SpecificFunctionMatcher class matches a single specified function name. More...

Inheritance diagram for duckdb::SpecificFunctionMatcher:
Collaboration diagram for duckdb::SpecificFunctionMatcher:

Public Member Functions

 SpecificFunctionMatcher (string name_p)
 
bool Match (const string &matched_name) override
 

Private Attributes

string name
 

Additional Inherited Members

- Static Public Member Functions inherited from duckdb::FunctionMatcher
static bool Match (unique_ptr< FunctionMatcher > &matcher, const string &name)
 

Detailed Description

The SpecificFunctionMatcher class matches a single specified function name.

Constructor & Destructor Documentation

◆ SpecificFunctionMatcher()

duckdb::SpecificFunctionMatcher::SpecificFunctionMatcher ( string  name_p)
inlineexplicit
69338 : name(std::move(name_p)) {
69339 }

Member Function Documentation

◆ Match()

bool duckdb::SpecificFunctionMatcher::Match ( const string &  matched_name)
inlineoverridevirtual

Implements duckdb::FunctionMatcher.

69341 {
69342 return matched_name == this->name;
69343 }

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