| 701 | }; |
| 702 | |
| 703 | CelValue DynamicList::operator[](int index) const { |
| 704 | return ValueManager(factory_, arena_) |
| 705 | .ValueFromMessage(&values_->values(index)); |
| 706 | } |
| 707 | |
| 708 | absl::optional<CelValue> DynamicMap::operator[](CelValue key) const { |
| 709 | CelValue::StringHolder str_key; |
nothing calls this directly
no test coverage detected