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

Function IsLowerWord

util/charset/wide.cpp:108–110  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

106}
107
108bool IsLowerWord(const TWtringBuf text) noexcept {
109 return IsReductionOnSymbolsTrue(text, [](const wchar32 s) { return IsLower(s); });
110}
111
112bool IsUpperWord(const TWtringBuf text) noexcept {
113 return IsReductionOnSymbolsTrue(text, [](const wchar32 s) { return IsUpper(s); });

Callers 2

TestIsLowerWordStrMethod · 0.85
IsTitleWordFunction · 0.85

Calls 2

IsReductionOnSymbolsTrueFunction · 0.85
IsLowerFunction · 0.70

Tested by 1

TestIsLowerWordStrMethod · 0.68