Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/comaps/comaps
/ IsASCIIString
Function
IsASCIIString
libs/base/string_utils.cpp:345–351 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
343
}
344
345
bool IsASCIIString(std::string_view sv)
346
{
347
for (auto const c : sv)
348
if (c & 0x80)
349
return false;
350
return true;
351
}
352
353
bool IsASCIIDigit(UniChar c)
354
{
Callers
6
CreateZipFromFiles
Function · 0.85
Transliterate
Method · 0.85
ParseEmoji
Function · 0.85
ValidateEmail
Method · 0.85
UNIT_TEST
Function · 0.85
ExportMultipleFiles
Function · 0.85
Calls
no outgoing calls
Tested by
1
UNIT_TEST
Function · 0.68