| 260 | } |
| 261 | |
| 262 | Result<std::shared_ptr<Function>> FunctionRegistry::GetFunction( |
| 263 | const std::string& name) const { |
| 264 | return impl_->GetFunction(name); |
| 265 | } |
| 266 | |
| 267 | std::vector<std::string> FunctionRegistry::GetFunctionNames() const { |
| 268 | return impl_->GetFunctionNames(); |
no outgoing calls