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

Function ToLower

util/charset/wide.cpp:219–222  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

217}
218
219bool ToLower(TUtf16String& text, size_t pos, size_t count) {
220 const auto f = [](const wchar32 s) { return ToLower(s); };
221 return ModifyStringSymbolwise(text, pos, count, f);
222}
223
224bool ToUpper(TUtf16String& text, size_t pos, size_t count) {
225 const auto f = [](const wchar32 s) { return ToUpper(s); };

Callers 8

TestUnicodeCaseMethod · 0.70
TestToLowerMethod · 0.70
TestWideStringMethod · 0.70
TestToLowerStrMethod · 0.70
ConvertCharFunction · 0.70
ToTitleFunction · 0.70
ToLowerRetFunction · 0.70
to_lowerMethod · 0.50

Calls 1

ModifyStringSymbolwiseFunction · 0.70

Tested by 4

TestUnicodeCaseMethod · 0.56
TestToLowerMethod · 0.56
TestWideStringMethod · 0.56
TestToLowerStrMethod · 0.56