MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / InitIdent

Function InitIdent

src/String.cpp:79–84  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77#ifdef HXCPP_COMBINE_STRINGS
78static bool sIsIdent[256];
79static bool InitIdent()
80{
81 for(int i=0;i<256;i++)
82 sIsIdent[i]= (i>='a' && i<='z') || (i>='A' && i<='Z') || (i>='0' && i<='9') || (i=='_');
83 return true;
84}
85#endif
86
87inline static bool IsUtf16Surrogate(int ch)

Callers 1

__bootMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected