Assignment operators
Declared in <bdljsn_json.h>
Assign to this object the value of the specified rhs object, and return a reference providing modifiable access to this object.
JsonObject&
operator=(JsonObject const& rhs);
» more...
Assign to this object by moving from the specified rhs.
JsonObject&
operator=(bslmf::MovableRef<JsonObject> rhs);
» more...
Assign to this object from the specified memberInitializers.
JsonObject&
operator=(std::initializer_list<JsonObject_MemberInitializer> memberInitializers);
» more...
a reference providing modifiable access to this object
| Name | Description |
|---|---|
| rhs | source object |
| memberInitializers | initializer-list of members |