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