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

Method Code

library/cpp/charset/codepage.h:197–201  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

195 const char* DefaultChar;
196
197 inline char Code(wchar32 ch) const {
198 if (ch > 0xFFFF)
199 return 0;
200 return (unsigned char)Table[(ch >> 8) & 255][ch & 255];
201 }
202
203 inline char Tr(wchar32 ch) const {
204 char code = Code(ch);

Callers 3

PrintErrorFunction · 0.45
PrintErrorFunction · 0.45
CreateMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected