Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
23
bool isIdentStart(char c)
24
{
25
return std::isalpha(static_cast<unsigned char>(c)) != 0 || c ==
'_'
|| c ==
'@'
;
26
}
27
28
bool isIdentChar(char c)
29
{
Callers
2
scanDecimalNumber
Function · 0.85
tokenize
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected