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

Function isIdentStart

src/script_tokenizer.cpp:23–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21{
22
23bool isIdentStart(char c)
24{
25 return std::isalpha(static_cast<unsigned char>(c)) != 0 || c == '_' || c == '@';
26}
27
28bool isIdentChar(char c)
29{

Callers 2

scanDecimalNumberFunction · 0.85
tokenizeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected