MCPcopy Create free account
hub / github.com/apache/impala / Append2

Function Append2

be/src/gutil/strings/strcat.cc:33–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31}
32
33static char *Append2(char *out, const AlphaNum &x1, const AlphaNum &x2) {
34 memcpy(out, x1.data(), x1.size());
35 out += x1.size();
36
37 memcpy(out, x2.data(), x2.size());
38 return out + x2.size();
39}
40
41static char *Append4(char *out,
42 const AlphaNum &x1, const AlphaNum &x2,

Callers 2

StrCatFunction · 0.85
StrAppendFunction · 0.85

Calls 2

dataMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected