MCPcopy Create free account
hub / github.com/CoolProp/CoolProp / get_csv_parameter_list

Function get_csv_parameter_list

src/DataStructures.cpp:204–212  ·  view source on GitHub ↗

Return a list of parameters

Source from the content-addressed store, hash-verified

202
203/// Return a list of parameters
204std::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}
213bool is_valid_parameter(const std::string& param_name, parameters& iOutput) {
214 auto& parameter_information = get_parameter_information();
215 // Try to find it

Callers 2

DataStructures.cppFile · 0.85
get_global_param_stringFunction · 0.85

Calls 3

strjoinFunction · 0.85
sizeMethod · 0.45

Tested by

no test coverage detected