MCPcopy Create free account
hub / github.com/Cantera/cantera / fpValue

Function fpValue

src/base/stringUtils.cpp:121–128  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

119}
120
121double fpValue(const string& val)
122{
123 double rval;
124 std::stringstream ss(val);
125 ss.imbue(std::locale("C"));
126 ss >> rval;
127 return rval;
128}
129
130double fpValueCheck(const string& val)
131{

Callers 3

mainFunction · 0.85
decodeMethod · 0.85
fpValueCheckFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected