| 3084 | bool Value::operator>=(const Value& other) const { return !(*this < other); } |
| 3085 | |
| 3086 | bool Value::operator>(const Value& other) const { return other < *this; } |
| 3087 | |
| 3088 | bool Value::operator==(const Value& other) const { |
| 3089 | // if ( type_ != other.type_ ) |
nothing calls this directly
no outgoing calls
no test coverage detected