| 153 | } |
| 154 | |
| 155 | CustomFunction * 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 | |
| 165 | bool CustomFunctionManager::Call(FunctionHandle handle, OsiArgumentDesc const & params) |
| 166 | { |
no outgoing calls
no test coverage detected