MCPcopy Create free account
hub / github.com/catboost/catboost / IsLower

Function IsLower

util/charset/wide.cpp:116–123  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

114}
115
116bool IsLower(const TWtringBuf text) noexcept {
117 return IsReductionOnSymbolsTrue(text, [](const wchar32 s) {
118 if (IsAlpha(s)) {
119 return IsLower(s);
120 }
121 return true;
122 });
123}
124
125bool IsUpper(const TWtringBuf text) noexcept {
126 return IsReductionOnSymbolsTrue(text, [](const wchar32 s) {

Callers 3

TestIsLowerStrMethod · 0.70
IsLowerWordFunction · 0.70
IsLowerMethod · 0.50

Calls 2

IsReductionOnSymbolsTrueFunction · 0.85
IsAlphaFunction · 0.70

Tested by 1

TestIsLowerStrMethod · 0.56