* Generates a list of integers, based on the given start and end values * * @param start Start number of the range * @param end End number of the range * * @return std::string with all the numbers on a single line */
| 204 | * @return std::string with all the numbers on a single line |
| 205 | */ |
| 206 | static std::string intern_arghelper_integer_range(int start, int end) |
| 207 | { |
| 208 | std::stringstream out; |
| 209 | for (int i = start; i <= end; i++) |
| 210 | { |
| 211 | out << std::to_string(i) << " "; |
| 212 | } |
| 213 | return out.str(); |
| 214 | } |
| 215 | |
| 216 | |
| 217 | /** |
no test coverage detected