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

Method to_upper

library/cpp/containers/cow_string/cow_string.cpp:93–95  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91
92template <>
93bool TBasicCowString<char, std::char_traits<char>>::to_upper(size_t pos, size_t n) {
94 return Transform([](size_t, char c) { return AsciiToUpper(c); }, pos, n);
95}
96
97template <>
98bool TBasicCowString<char, std::char_traits<char>>::to_title(size_t pos, size_t n) {

Callers 2

Y_COMPLETERFunction · 0.45
cow_string.hFile · 0.45

Calls 4

AsciiToUpperFunction · 0.85
TransformFunction · 0.70
ModifyStringSymbolwiseFunction · 0.70
ToUpperFunction · 0.50

Tested by

no test coverage detected