| 212 | } |
| 213 | |
| 214 | uint64_t ReadInt(bool is_new_batch, bool is_end_of_batch) { |
| 215 | return *ReadOne(is_new_batch, is_end_of_batch)->data<uint64_t>(); |
| 216 | } |
| 217 | |
| 218 | std::vector<uint64_t> ReadInts(size_t n) { |
| 219 | std::vector<uint64_t> result(n); |
no outgoing calls
no test coverage detected