MCPcopy Create free account
hub / github.com/FoundationDB/fdb-document-layer / strAppend

Function strAppend

src/QLContext.actor.cpp:128–134  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

126}
127
128static inline std::string strAppend(std::string& lhs, StringRef const& rhs) {
129 std::string r;
130 r.reserve(lhs.size() + rhs.size());
131 r = lhs;
132 r += rhs;
133 return r;
134}
135
136ACTOR static Future<Void> FDBPlugin_getDescendants(DataKey key,
137 Reference<DocTransaction> tr,

Callers 1

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected