| 235 | } |
| 236 | |
| 237 | Status FunctionRegistry::AddFunction(std::shared_ptr<Function> function, |
| 238 | bool allow_overwrite) { |
| 239 | return impl_->AddFunction(std::move(function), allow_overwrite); |
| 240 | } |
| 241 | |
| 242 | Status FunctionRegistry::CanAddAlias(const std::string& target_name, |
| 243 | const std::string& source_name) { |
no outgoing calls