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

Function AsciiToLower

util/string/ascii.h:142–144  ·  view source on GitHub ↗

some extra helpers

Source from the content-addressed store, hash-verified

140
141// some extra helpers
142inline ui8 AsciiToLower(ui8 c) noexcept {
143 return ::NPrivate::ASCII_LOWER[c];
144}
145
146inline char AsciiToLower(char c) noexcept {
147 return (char)AsciiToLower((ui8)c);

Callers 8

operator*Method · 0.85
to_lowerMethod · 0.85
operator()Method · 0.85
ToCommonCaseMethod · 0.85
LowerCaseHexFunction · 0.85
to_lowerMethod · 0.85
NumberOfCpusMethod · 0.85
Y_UNIT_TESTFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected