| 57 | } |
| 58 | |
| 59 | yyjson_mut_val* jsonifyAsString(JsonMutWrapper& wrapper, const common::ValueVector& vec, |
| 60 | uint64_t pos) { |
| 61 | auto strVal = vec.getAsValue(pos)->toString(); |
| 62 | return yyjson_mut_strcpy(wrapper.ptr, strVal.c_str()); |
| 63 | } |
| 64 | |
| 65 | yyjson_mut_val* jsonify(JsonMutWrapper& wrapper, const common::ValueVector& vec, uint64_t pos) { |
| 66 | // creates a mutable value linked to wrapper.ptr, but the responsibility to integrate it into |
no test coverage detected