| 128 | constexpr explicit UintCompareVisitor(uint64_t v) : v(v) {} |
| 129 | |
| 130 | constexpr ComparisonResult operator()(double other) const { |
| 131 | return Invert(DoubleCompareVisitor(other)(v)); |
| 132 | } |
| 133 | |
| 134 | constexpr ComparisonResult operator()(uint64_t other) const { |
| 135 | return Compare(v, other); |
nothing calls this directly
no test coverage detected