MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / stoull

Function stoull

system/lib/libcxx/src/string.cpp:254–256  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

252long long stoll(const string& str, size_t* idx, int base) { return as_integer<long long>("stoll", str, idx, base); }
253
254unsigned long long stoull(const string& str, size_t* idx, int base) {
255 return as_integer<unsigned long long>("stoull", str, idx, base);
256}
257
258float stof(const string& str, size_t* idx) { return as_float<float>("stof", str, idx); }
259

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected