makeArray overloads
Declared in <bdljsn_json.h>
Replace this value with a default-constructed JsonArray.
JsonArray&
makeArray();
» more...
Replace this value with a JsonArray moved from array.
JsonArray&
makeArray(bslmf::MovableRef<JsonArray> array);
» more...
Replace this value with a JsonArray initialized from array.
JsonArray&
makeArray(JsonArray const& array);
» more...
a reference providing modifiable access to the held JsonArray
| Name | Description |
|---|---|
| array | value used to initialize the created array |