| 159 | } |
| 160 | |
| 161 | value_type operator[](int64_t index) const { return GetValue(index); } |
| 162 | |
| 163 | value_type& operator[](int64_t index) { |
| 164 | return reinterpret_cast<value_type*>(data_builder_.mutable_data())[index]; |
nothing calls this directly
no test coverage detected