Array / Objects
| 120 | |
| 121 | // Array / Objects |
| 122 | void JsonWriter::KeyArray( |
| 123 | std::string_view keyName, |
| 124 | const std::function<void(void)>& insideArray) { |
| 125 | Key(keyName); |
| 126 | _compact->StartArray(); |
| 127 | insideArray(); |
| 128 | _compact->EndArray(); |
| 129 | } |
| 130 | |
| 131 | void JsonWriter::KeyObject( |
| 132 | std::string_view keyName, |
nothing calls this directly
no test coverage detected