| 285 | |
| 286 | const uint8_t* GetValue(int64_t i) const { return values_ + i * byte_width_; } |
| 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_); |
no test coverage detected