Exemplo n.º 1
0
 Conjunct& operator|| (const Conjunct& c) {
     for (auto& p : c.mPredicates) {
         mPredicates.emplace_back(p);
     }
     return *this;
 }
Exemplo n.º 2
0
 Conjunct(Predicate&& predicate) {
     mPredicates.emplace_back(std::move(predicate));
 }