| 276 | } // namespace |
| 277 | |
| 278 | Status ChunkedArray::Validate() const { |
| 279 | return ValidateChunks(chunks_, /*full_validation=*/false); |
| 280 | } |
| 281 | |
| 282 | Status ChunkedArray::ValidateFull() const { |
| 283 | return ValidateChunks(chunks_, /*full_validation=*/true); |
nothing calls this directly
no test coverage detected