| 9127 | bool operator()(const A& a, const B& b) const { return a > b; } |
| 9128 | }; |
| 9129 | struct AnyLe { |
| 9130 | template <typename A, typename B> |
| 9131 | bool operator()(const A& a, const B& b) const { return a <= b; } |
| 9132 | }; |
| 9133 | struct AnyGe { |
| 9134 | template <typename A, typename B> |
| 9135 | bool operator()(const A& a, const B& b) const { return a >= b; } |
nothing calls this directly
no outgoing calls
no test coverage detected