MCPcopy Create free account
hub / github.com/Snapchat/Valdi / parseHexLong

Method parseHexLong

valdi_core/src/valdi_core/cpp/Utils/TextParser.cpp:188–196  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

186}
187
188std::optional<long long> TextParser::parseHexLong() {
189 long long l;
190
191 if (!parseHexLong(l)) {
192 return std::nullopt;
193 }
194
195 return l;
196}
197
198bool TextParser::parseDouble(double& output) {
199 if (!doParseNumber<double>(_str, _position, output, strtod)) {

Callers 1

TESTFunction · 0.80

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.64