You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
e.g. calcAV currently returns its results in an output string.
If one wants to use these values further down the toolchain, they will need to be parsed, i.e. one is doing: compute values => produce string => parse string to get values
What about returning a std::map<std::string, std::double> instead and having a function that prints them out as a string when needed?
The text was updated successfully, but these errors were encountered:
e.g. calcAV currently returns its results in an output string.
If one wants to use these values further down the toolchain, they will need to be parsed, i.e. one is doing: compute values => produce string => parse string to get values
What about returning a
std::map<std::string, std::double>
instead and having a function that prints them out as a string when needed?The text was updated successfully, but these errors were encountered: