| 2045 | } |
| 2046 | |
| 2047 | bool Value::operator<=(const Value &other) const { return !(other < *this); } |
| 2048 | |
| 2049 | bool Value::operator>=(const Value &other) const { return !(*this < other); } |
| 2050 |
nothing calls this directly
no outgoing calls
no test coverage detected