| 435 | template <typename OffsetType> |
| 436 | struct VarRangeSelector { |
| 437 | ElementRange GetRange(int64_t index) const { |
| 438 | return ElementRange{offsets[index], offsets[index + 1]}; |
| 439 | } |
| 440 | |
| 441 | // Either int32_t* or int64_t*. |
| 442 | const OffsetType* offsets; |
no outgoing calls
no test coverage detected