| 2049 | bool Value::operator>=(const Value &other) const { return !(*this < other); } |
| 2050 | |
| 2051 | bool Value::operator>(const Value &other) const { return other < *this; } |
| 2052 | |
| 2053 | bool Value::operator==(const Value &other) const { |
| 2054 | // if ( type_ != other.type_ ) |
nothing calls this directly
no outgoing calls
no test coverage detected