MCPcopy Create free account
hub / github.com/BehaviorTree/BehaviorTree.CPP / isHexDigit

Function isHexDigit

src/script_tokenizer.cpp:38–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36}
37
38bool isHexDigit(char c)
39{
40 return std::isxdigit(static_cast<unsigned char>(c)) != 0;
41}
42
43// Consume trailing garbage after a malformed number token.
44void consumeTrailingGarbage(const std::string& source, size_t len, size_t& i)

Callers 1

scanHexNumberFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected