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

Function isIdentChar

src/script_tokenizer.cpp:28–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26}
27
28bool isIdentChar(char c)
29{
30 return std::isalnum(static_cast<unsigned char>(c)) != 0 || c == '_';
31}
32
33bool isDigit(char c)
34{

Callers 4

consumeTrailingGarbageFunction · 0.85
scanHexNumberFunction · 0.85
scanDecimalNumberFunction · 0.85
tokenizeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected