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

Method toString

src/QLPredicate.actor.cpp:133–143  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

131}
132
133std::string AndPredicate::toString() {
134 std::string s = "AND(";
135 int addcomma = 0;
136 for (const auto& t : terms) {
137 if (addcomma++)
138 s += ", ";
139 s += t->toString();
140 }
141 s += ")";
142 return s;
143}
144
145Reference<IPredicate> AndPredicate::simplify_not() {
146 std::vector<Reference<IPredicate>> terms;

Callers 1

get_rangeMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected