| 41 | template <typename T> |
| 42 | struct OperatorKeyHasher { |
| 43 | size_t operator()(const T& x) const { |
| 44 | size_t a = ValueHasher<typename T::first_type>()(x.first); |
| 45 | size_t b = ValueHasher<typename T::second_type>()(x.second); |
| 46 | return CombineHashes({a, b}); |
| 47 | } |
| 48 | }; |
| 49 | } // namespace op_resolver_hasher |
| 50 |
nothing calls this directly
no test coverage detected