MCPcopy Create free account
hub / github.com/csyonghe/Spire / StringToDouble

Function StringToDouble

Source/CoreLib/LibString.cpp:60–63  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

58 return (unsigned int)strtoull(str.Buffer(), NULL, radix);
59 }
60 double StringToDouble(const String & str)
61 {
62 return (double)strtod(str.Buffer(), NULL);
63 }
64 float StringToFloat(const String & str)
65 {
66 return strtof(str.Buffer(), NULL);

Callers 2

ReadDoubleMethod · 0.85
ParseLeafExpressionMethod · 0.85

Calls 1

BufferMethod · 0.45

Tested by

no test coverage detected