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

Function strAppend

src/QLPlan.actor.cpp:182–188  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

180}
181
182static inline std::string strAppend(std::string& lhs, StringRef const& rhs) {
183 std::string r;
184 r.reserve(lhs.size() + rhs.size());
185 r = lhs;
186 r += rhs;
187 return r;
188}
189
190Optional<Reference<Plan>> IndexScanPlan::push_down(Reference<UnboundCollectionContext> cx,
191 Reference<IPredicate> query) {

Callers

nothing calls this directly

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected