| 288 | } // namespace |
| 289 | |
| 290 | Status ChunkedArray::Validate() const { |
| 291 | return ValidateChunks(chunks_, /*full_validation=*/false); |
| 292 | } |
| 293 | |
| 294 | Status ChunkedArray::ValidateFull() const { |
| 295 | return ValidateChunks(chunks_, /*full_validation=*/true); |
nothing calls this directly
no test coverage detected