| 515 | inline void PutByteArray(const void* ptr, int32_t length); |
| 516 | |
| 517 | void Put(const T* src, int num_values) override { |
| 518 | for (int32_t i = 0; i < num_values; i++) { |
| 519 | Put(SafeLoad(src + i)); |
| 520 | } |
| 521 | } |
| 522 | |
| 523 | void PutSpaced(const T* src, int num_values, const uint8_t* valid_bits, |
| 524 | int64_t valid_bits_offset) override { |
nothing calls this directly
no test coverage detected