| 77 | } |
| 78 | |
| 79 | static std::string GetCell(const std::vector<std::string>& base_rows, size_t row_index) { |
| 80 | return base_rows[row_index % base_rows.size()]; |
| 81 | } |
| 82 | |
| 83 | static void WriteRow(std::ostream& writer, size_t row_index) { |
| 84 | writer << GetCell(int64_rows, row_index); |