MCPcopy Create free account
hub / github.com/Pagghiu/SaneCppLibraries / startArray

Method startArray

Libraries/SerializationText/SerializationJson.cpp:310–314  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

308bool SC::SerializationJson::Writer::endObject() { return output.append("}"); }
309
310bool SC::SerializationJson::Writer::startArray(uint32_t index)
311{
312 SC_TRY(eventuallyAddComma(index));
313 return output.append("[");
314}
315
316bool SC::SerializationJson::Writer::endArray() { return output.append("]"); }
317

Callers 3

serializeMethod · 0.45
serializeMethod · 0.45
loadVersionedMethod · 0.45

Calls 2

appendMethod · 0.45
getTypeMethod · 0.45

Tested by

no test coverage detected