| 33 | std::string, |
| 34 | std::function<Reference<IPredicate>(std::string const&, bson::BSONElement const&)>> { |
| 35 | static Reference<IPredicate> toPredicate(std::string const& op, |
| 36 | std::string const& unencoded_path, |
| 37 | bson::BSONElement const& element) { |
| 38 | return dispatch(op)(unencoded_path, element); |
| 39 | } |
| 40 | }; |
| 41 | |
| 42 | #define REGISTER_VALUE_OPERATOR(Op, Key) \ |
nothing calls this directly
no outgoing calls
no test coverage detected