| 89 | } |
| 90 | |
| 91 | absl::optional<bool> GetBoolKey() const { |
| 92 | return absl::holds_alternative<bool>(value_) |
| 93 | ? absl::optional<bool>(absl::get<4>(value_)) |
| 94 | : absl::nullopt; |
| 95 | } |
| 96 | |
| 97 | bool operator==(const AttributeQualifier& other) const { |
| 98 | return IsMatch(other); |
no outgoing calls