| 9115 | bool operator()(const A& a, const B& b) const { return a == b; } |
| 9116 | }; |
| 9117 | struct AnyNe { |
| 9118 | template <typename A, typename B> |
| 9119 | bool operator()(const A& a, const B& b) const { return a != b; } |
| 9120 | }; |
| 9121 | struct AnyLt { |
| 9122 | template <typename A, typename B> |
| 9123 | bool operator()(const A& a, const B& b) const { return a < b; } |
nothing calls this directly
no outgoing calls
no test coverage detected