| 36 | SIMDjsonParseResult(std::string_view json) { (void)json; } |
| 37 | |
| 38 | bool contains_impl(std::string_view key) const { |
| 39 | (void)key; |
| 40 | // auto v = root_.find_field(key); |
| 41 | // if (simdjson::NO_SUCH_FIELD == v) { |
| 42 | // return false; |
| 43 | // } |
| 44 | return true; |
| 45 | } |
| 46 | |
| 47 | bool stringfy_impl(SIMDjsonStringResult &sr) const { |
| 48 | sr.s = simdjson::minify(root_); |
nothing calls this directly
no outgoing calls
no test coverage detected