Assignment operators
Declared in <bdljsn_json.h>
Assign to this object the value of the specified rhs.
JsonArray&
operator=(JsonArray const& rhs);
» more...
Assign to this object by moving from the specified rhs.
JsonArray&
operator=(bslmf::MovableRef<JsonArray> rhs);
» more...
Assign to this array from the specified elements.
JsonArray&
operator=(std::initializer_list<Json_Initializer> elements);
» more...
a reference providing modifiable access to this object
| Name | Description |
|---|---|
| rhs | source array |
| elements | initializer-list of element values |