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

Function IsUpperWord

util/charset/wide.cpp:112–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

110}
111
112bool IsUpperWord(const TWtringBuf text) noexcept {
113 return IsReductionOnSymbolsTrue(text, [](const wchar32 s) { return IsUpper(s); });
114}
115
116bool IsLower(const TWtringBuf text) noexcept {
117 return IsReductionOnSymbolsTrue(text, [](const wchar32 s) {

Callers 1

TestIsUpperWordStrMethod · 0.85

Calls 2

IsReductionOnSymbolsTrueFunction · 0.85
IsUpperFunction · 0.70

Tested by 1

TestIsUpperWordStrMethod · 0.68