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

Class ExtBoolOperatorNor

src/ExtOperator.actor.cpp:241–246  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

239REGISTER_BOOL_OPERATOR(ExtBoolOperatorOr, "$or");
240
241struct ExtBoolOperatorNor {
242 static const char* name;
243 static Reference<IPredicate> toPredicate(bson::BSONObj const& obj) {
244 return ref(new NotPredicate(ExtBoolOperator::toPredicate("$or", obj)));
245 }
246};
247REGISTER_BOOL_OPERATOR(ExtBoolOperatorNor, "$nor");
248
249struct ExtUpdateOperatorSet {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected