| 287 | const uint8_t* Value(int64_t i) const { return GetValue(i); } |
| 288 | |
| 289 | std::string_view GetView(int64_t i) const { |
| 290 | return std::string_view(reinterpret_cast<const char*>(GetValue(i)), byte_width_); |
| 291 | } |
| 292 | |
| 293 | std::optional<std::string_view> operator[](int64_t i) const { |
| 294 | return *IteratorType(*this, i); |