Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
28
bool isIdentChar(char c)
29
{
30
return std::isalnum(static_cast<unsigned char>(c)) != 0 || c ==
'_'
;
31
}
32
33
bool isDigit(char c)
34
{
Callers
4
consumeTrailingGarbage
Function · 0.85
scanHexNumber
Function · 0.85
scanDecimalNumber
Function · 0.85
tokenize
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected