MCPcopy Create free account
hub / github.com/CesiumGS/cesium-native / KeyArray

Method KeyArray

CesiumJsonWriter/src/JsonWriter.cpp:122–129  ·  view source on GitHub ↗

Array / Objects

Source from the content-addressed store, hash-verified

120
121// Array / Objects
122void 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
131void JsonWriter::KeyObject(
132 std::string_view keyName,

Callers

nothing calls this directly

Calls 2

StartArrayMethod · 0.45
EndArrayMethod · 0.45

Tested by

no test coverage detected