| 261 | } |
| 262 | |
| 263 | OperatorRegistration* OperatorRegistry::find_operator( |
| 264 | const std::string& qualified_name) { |
| 265 | auto it = operators_.find(qualified_name); |
| 266 | return (it != operators_.end()) ? &it->second : nullptr; |
| 267 | } |
| 268 | |
| 269 | void OperatorRegistry::print_all_operators() const { |
| 270 | std::stringstream oss; |