| 141 | } |
| 142 | |
| 143 | absl::StatusOr<bool> FieldBackedMapImpl::Has(const CelValue& key) const { |
| 144 | MapValueConstRef value_ref; |
| 145 | return LookupMapValue(key, &value_ref); |
| 146 | } |
| 147 | |
| 148 | absl::optional<CelValue> FieldBackedMapImpl::operator[](CelValue key) const { |
| 149 | // Fast implementation which uses a friend method to do a hash-based key |