| 213 | std::string toString() override; |
| 214 | |
| 215 | void get_range(Optional<DataValue>& min, Optional<DataValue>& max) override { |
| 216 | min = DataValue::subObject(); |
| 217 | max = DataValue::arrayOfLength(std::numeric_limits<uint32_t>::max()); |
| 218 | } |
| 219 | }; |
| 220 | |
| 221 | struct EqPredicate : IPredicate, ReferenceCounted<EqPredicate>, FastAllocated<EqPredicate> { |
nothing calls this directly
no outgoing calls
no test coverage detected