| 223 | } |
| 224 | |
| 225 | ABSL_MUST_USE_RESULT bool has_value() const { |
| 226 | return !absl::holds_alternative<absl::monostate>(kind()); |
| 227 | } |
| 228 | |
| 229 | ABSL_MUST_USE_RESULT bool has_null_value() const { |
| 230 | return absl::holds_alternative<std::nullptr_t>(kind()); |
no test coverage detected