| 159 | std::vector<Reference<IPredicate>> terms; |
| 160 | |
| 161 | explicit AndPredicate(std::vector<Reference<IPredicate>> const& terms) : terms(terms) {} |
| 162 | AndPredicate(Reference<IPredicate> const& term1, Reference<IPredicate> const& term2) : terms({term1, term2}) {} |
| 163 | |
| 164 | Future<bool> evaluate(Reference<IReadContext> const& context) override; |
nothing calls this directly
no outgoing calls
no test coverage detected