| 143 | } |
| 144 | |
| 145 | std::vector<std::string> split_lines(const std::string& text) { |
| 146 | std::vector<std::string> out; |
| 147 | std::istringstream iss(text); |
| 148 | std::string line; |
| 149 | while (std::getline(iss, line)) { |
| 150 | out.push_back(line); |
| 151 | } |
| 152 | return out; |
| 153 | } |
| 154 | |
| 155 | std::vector<std::string> split_datasets(const std::string& text) { |
| 156 | const std::string marker = "End of Dataset"; |
no outgoing calls
no test coverage detected