| 145 | } |
| 146 | |
| 147 | bool StringValue::IsEmpty() const { |
| 148 | return NativeValue( |
| 149 | [](const auto& alternative) -> bool { return alternative.empty(); }); |
| 150 | } |
| 151 | |
| 152 | bool StringValue::Equals(absl::string_view string) const { |
| 153 | return value_.Equals(string); |
no test coverage detected