| 15 | struct TOps { |
| 16 | template <class T> |
| 17 | inline bool operator()(const T& l, const T& r) const noexcept { |
| 18 | return l.Get() == r.Get(); |
| 19 | } |
| 20 | |
| 21 | template <class T> |
| 22 | inline size_t operator()(const T& t) const noexcept { |
nothing calls this directly
no test coverage detected