| 444 | static constexpr bool kContiguous = true; |
| 445 | |
| 446 | ElementRange GetRange(int64_t index) const { |
| 447 | return ElementRange{.start = offsets[index], .end = offsets[index + 1]}; |
| 448 | } |
| 449 | |
| 450 | // Either int32_t* or int64_t*. |
| 451 | const OffsetType* offsets; |
no outgoing calls
no test coverage detected