| 651 | |
| 652 | template <typename T> |
| 653 | void WriteDataField(const T& arr) { |
| 654 | writer_->Key(kData); |
| 655 | writer_->StartArray(); |
| 656 | WriteDataValues(arr); |
| 657 | writer_->EndArray(); |
| 658 | } |
| 659 | |
| 660 | template <typename T> |
| 661 | void WriteIntegerField(const char* name, const T* values, int64_t length) { |
nothing calls this directly
no test coverage detected