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

The ManyFunctionMatcher class matches a set of functions. More...

Inheritance diagram for duckdb::ManyFunctionMatcher:
Collaboration diagram for duckdb::ManyFunctionMatcher:

Public Member Functions

 ManyFunctionMatcher (unordered_set< string > names_p)
 
bool Match (const string &name) override
 

Private Attributes

unordered_set< string > names
 

Additional Inherited Members

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

Detailed Description

The ManyFunctionMatcher class matches a set of functions.

Constructor & Destructor Documentation

◆ ManyFunctionMatcher()

duckdb::ManyFunctionMatcher::ManyFunctionMatcher ( unordered_set< string >  names_p)
inlineexplicit
69352 : names(std::move(names_p)) {
69353 }

Member Function Documentation

◆ Match()

bool duckdb::ManyFunctionMatcher::Match ( const string &  name)
inlineoverridevirtual

Implements duckdb::FunctionMatcher.

69355 {
69356 return names.find(name) != names.end();
69357 }

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