Return a list of parameters
| 202 | |
| 203 | /// Return a list of parameters |
| 204 | std::string get_csv_parameter_list() { |
| 205 | auto& parameter_information = get_parameter_information(); |
| 206 | std::vector<std::string> strings; |
| 207 | strings.reserve(parameter_information.index_map.size()); |
| 208 | for (auto& it : parameter_information.index_map) { |
| 209 | strings.push_back(it.first); |
| 210 | } |
| 211 | return strjoin(strings, ","); |
| 212 | } |
| 213 | bool is_valid_parameter(const std::string& param_name, parameters& iOutput) { |
| 214 | auto& parameter_information = get_parameter_information(); |
| 215 | // Try to find it |
no test coverage detected