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

Method to_upper

util/generic/string.cpp:26–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24
25template <>
26bool TBasicString<char, std::char_traits<char>>::to_upper(size_t pos, size_t n) {
27 return Transform([](size_t, char c) { return AsciiToUpper(c); }, pos, n);
28}
29
30template <>
31bool TBasicString<char, std::char_traits<char>>::to_title(size_t pos, size_t n) {

Callers 6

UpperStringFunction · 0.45
UpperStringFunction · 0.45
TestFuncsMethod · 0.45
string.hFile · 0.45
TestWideStringMethod · 0.45
Y_UNIT_TESTFunction · 0.45

Calls 3

AsciiToUpperFunction · 0.85
TransformFunction · 0.70
ToUpperFunction · 0.50

Tested by 2

TestFuncsMethod · 0.36
TestWideStringMethod · 0.36