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

Function Apply

library/cpp/charset/codepage.cpp:33–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31
32template <class T, class T1>
33static inline T1 Apply(T b, T e, T1 to, const Recoder& mapper) {
34 while (b != e) {
35 *to++ = mapper.Table[(unsigned char)*b++];
36 }
37
38 return to;
39}
40
41template <class T, class T1>
42static inline T1 Apply(T b, T1 to, const Recoder& mapper) {

Callers 5

ToLowerMethod · 0.70
ToUpperMethod · 0.70
InsertImplMethod · 0.50
FindProperBucketMethod · 0.50
RehashImplMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected