MCPcopy Create free account
hub / github.com/comaps/comaps / IsASCIILatin

Function IsASCIILatin

libs/base/string_utils.cpp:358–361  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

356}
357
358bool IsASCIILatin(UniChar c)
359{
360 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z');
361}
362
363bool StartsWith(UniString const & s, UniString const & p)
364{

Callers 2

LooksLikeHouseNumberMethod · 0.85
SimplifyCharFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected