MCPcopy Create free account
hub / github.com/Norbyte/ositools / Find

Method Find

OsiInterface/CustomFunctions.cpp:155–163  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

153}
154
155CustomFunction * CustomFunctionManager::Find(FunctionNameAndArity const & signature)
156{
157 auto it = signatures_.find(signature);
158 if (it == signatures_.end()) {
159 return nullptr;
160 } else {
161 return it->second;
162 }
163}
164
165bool CustomFunctionManager::Call(FunctionHandle handle, OsiArgumentDesc const & params)
166{

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected