| 151 | constexpr explicit IntCompareVisitor(int64_t v) : v(v) {} |
| 152 | |
| 153 | constexpr ComparisonResult operator()(double other) { |
| 154 | return Invert(DoubleCompareVisitor(other)(v)); |
| 155 | } |
| 156 | |
| 157 | constexpr ComparisonResult operator()(uint64_t other) { |
| 158 | return Invert(UintCompareVisitor(other)(v)); |
nothing calls this directly
no test coverage detected